├── .devin └── wiki.json ├── .github └── workflows │ └── action.yml ├── .gitignore ├── .gitmodules ├── DEBUGGING_INSTRUCTIONS.md ├── GameServices ├── Achievements │ ├── Achievement_Boss_1.png │ ├── Achievement_Boss_2.png │ ├── Achievement_Boss_3.png │ ├── Achievement_Boss_4.png │ ├── Achievement_Boss_5.png │ ├── Achievement_Boss_6.png │ ├── Achievement_Boss_IceGuardian.png │ ├── Achievement_Boss_Lich.png │ ├── Achievement_Boss_SpiderQueen.png │ ├── Achievement_Gnoll_Unlocked.png │ └── Achievement_Medical_Mask.png ├── feature.png ├── icon.png ├── icon_216.png ├── texts-az │ ├── badges.txt │ └── desc.txt ├── texts-de │ ├── badges.txt │ └── desc.txt ├── texts-de_DE │ └── desc.txt ├── texts-el │ └── badges.txt ├── texts-es │ ├── badges.txt │ └── desc.txt ├── texts-es_ES │ └── desc.txt ├── texts-es_MX │ ├── badges.txt │ └── desc.txt ├── texts-fil_PH │ └── badges.txt ├── texts-fr │ ├── badges.txt │ └── desc.txt ├── texts-fr_FR │ └── desc.txt ├── texts-hu │ ├── badges.txt │ └── desc.txt ├── texts-id │ ├── badges.txt │ └── desc.txt ├── texts-it │ └── badges.txt ├── texts-ko │ ├── badges.txt │ └── desc.txt ├── texts-ms │ ├── badges.txt │ └── desc.txt ├── texts-nl │ └── badges.txt ├── texts-pl │ ├── badges.txt │ └── desc.txt ├── texts-pl_PL │ └── badges.txt ├── texts-pt-rBR │ ├── badges.txt │ └── desc.txt ├── texts-ro │ ├── badges.txt │ └── desc.txt ├── texts-ru │ ├── badges.txt │ └── desc.txt ├── texts-ru_RU │ └── desc.txt ├── texts-sr │ └── badges.txt ├── texts-tr │ ├── badges.txt │ └── desc.txt ├── texts-uk │ ├── badges.txt │ └── desc.txt ├── texts-vi_VN │ ├── badges.txt │ └── desc.txt ├── texts-zh-Hans │ ├── badges.txt │ └── desc.txt ├── texts-zh │ ├── badges.txt │ └── desc.txt ├── texts-zh_CN │ ├── badges.txt │ └── desc.txt ├── texts-zh_HK │ └── badges.txt ├── texts-zh_TW │ ├── badges.txt │ └── desc.txt ├── texts │ ├── badges.txt │ └── desc.txt ├── title_1024x500.png ├── title_1280x720.png └── title_180x120.png ├── HiFiDLC ├── hero_modern │ └── .gitkeep ├── sound │ ├── body_armor.mp3 │ ├── dash.mp3 │ ├── game.mp3 │ ├── ost_boss_1_fight.mp3 │ ├── ost_boss_2_fight.mp3 │ ├── ost_boss_ambient.mp3 │ ├── ost_caves.mp3 │ ├── ost_city.mp3 │ ├── ost_guts.mp3 │ ├── ost_halls.mp3 │ ├── ost_ice_caves.mp3 │ ├── ost_last.mp3 │ ├── ost_necro.mp3 │ ├── ost_portal_level.mp3 │ ├── ost_prison.mp3 │ ├── ost_spider.mp3 │ ├── ost_town_1.mp3 │ ├── smash.mp3 │ ├── snd_alert.mp3 │ ├── snd_badge.mp3 │ ├── snd_beacon.mp3 │ ├── snd_bite.mp3 │ ├── snd_blast.mp3 │ ├── snd_bones.mp3 │ ├── snd_boss.mp3 │ ├── snd_burning.mp3 │ ├── snd_challenge.mp3 │ ├── snd_charms.mp3 │ ├── snd_click.mp3 │ ├── snd_crystal.mp3 │ ├── snd_cursed.mp3 │ ├── snd_death.mp3 │ ├── snd_descend.mp3 │ ├── snd_dewdrop.mp3 │ ├── snd_dominance.mp3 │ ├── snd_door_open.mp3 │ ├── snd_drink.mp3 │ ├── snd_eat.mp3 │ ├── snd_evoke.mp3 │ ├── snd_explosion.mp3 │ ├── snd_falling.mp3 │ ├── snd_ghost.mp3 │ ├── snd_gold.mp3 │ ├── snd_hit.mp3 │ ├── snd_item.mp3 │ ├── snd_levelup.mp3 │ ├── snd_lightning.mp3 │ ├── snd_lullaby.mp3 │ ├── snd_mastery.mp3 │ ├── snd_meld.mp3 │ ├── snd_mimic.mp3 │ ├── snd_miss.mp3 │ ├── snd_plant.mp3 │ ├── snd_puff.mp3 │ ├── snd_ray.mp3 │ ├── snd_read.mp3 │ ├── snd_rocks.mp3 │ ├── snd_rotten_drop.mp3 │ ├── snd_secret.mp3 │ ├── snd_shatter.mp3 │ ├── snd_step.mp3 │ ├── snd_teleport.mp3 │ ├── snd_tomb.mp3 │ ├── snd_trap.mp3 │ ├── snd_unlock.mp3 │ ├── snd_water.mp3 │ ├── snd_zap.mp3 │ ├── surface.mp3 │ └── theme.mp3 ├── strings_en.json ├── strings_ru.json └── version.json ├── LICENSE.txt ├── QWEN.md ├── README.md ├── REPO_MAP.md ├── RemixedDungeon ├── build.gradle ├── google-services.json ├── proguard-rules.txt ├── src │ ├── android │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ ├── nyrds │ │ │ ├── platform │ │ │ │ ├── ConcurrencyProvider.java │ │ │ │ ├── app │ │ │ │ │ ├── Input.java │ │ │ │ │ ├── Notifications.java │ │ │ │ │ ├── RemixedDungeonApp.java │ │ │ │ │ ├── WebServer.java │ │ │ │ │ └── WebServerHtml.java │ │ │ │ ├── audio │ │ │ │ │ ├── MusicManager.java │ │ │ │ │ └── Sample.java │ │ │ │ ├── game │ │ │ │ │ ├── Game.java │ │ │ │ │ ├── GameSurface.java │ │ │ │ │ ├── InstallMod.java │ │ │ │ │ ├── PlayTest.java │ │ │ │ │ ├── QuickModTest.java │ │ │ │ │ └── RemixedDungeon.java │ │ │ │ ├── gfx │ │ │ │ │ ├── BitmapData.java │ │ │ │ │ └── SystemText.java │ │ │ │ ├── gl │ │ │ │ │ ├── Attribute.java │ │ │ │ │ ├── Gl.java │ │ │ │ │ ├── MaskedTilemapScript.java │ │ │ │ │ ├── NoosaScript.java │ │ │ │ │ ├── Program.java │ │ │ │ │ ├── Shader.java │ │ │ │ │ ├── Texture.java │ │ │ │ │ └── Uniform.java │ │ │ │ ├── input │ │ │ │ │ ├── Keys.java │ │ │ │ │ ├── PointerEvent.java │ │ │ │ │ └── Touchscreen.java │ │ │ │ ├── lua │ │ │ │ │ └── PlatformLuajavaLib.java │ │ │ │ ├── network │ │ │ │ │ └── HttpConnectionFactory.java │ │ │ │ ├── storage │ │ │ │ │ ├── AndroidSAF.java │ │ │ │ │ ├── Assets.java │ │ │ │ │ ├── FileSystem.java │ │ │ │ │ ├── Preferences.java │ │ │ │ │ └── SaveUtils.java │ │ │ │ ├── support │ │ │ │ │ ├── AAdsComboProvider.java │ │ │ │ │ ├── Ads.java │ │ │ │ │ ├── AdsInterstitial.java │ │ │ │ │ ├── AdsRewardVideo.java │ │ │ │ │ ├── IIapCallback.java │ │ │ │ │ ├── IPurchasesUpdated.java │ │ │ │ │ ├── Iap.java │ │ │ │ │ ├── OfflineAds.java │ │ │ │ │ └── OfflineAdsProvider.java │ │ │ │ └── util │ │ │ │ │ ├── Crypter.java │ │ │ │ │ ├── Os.java │ │ │ │ │ ├── PUtil.java │ │ │ │ │ ├── StringsManager.java │ │ │ │ │ ├── TrackedRuntimeException.java │ │ │ │ │ └── UserKey.java │ │ │ └── util │ │ │ │ ├── ModdingMode.java │ │ │ │ └── ReportingExecutor.java │ │ │ └── watabou │ │ │ └── pixeldungeon │ │ │ └── scenes │ │ │ └── WebViewScene.java │ ├── fdroid │ │ └── java │ │ │ └── com │ │ │ └── nyrds │ │ │ ├── market │ │ │ ├── MarketApp.java │ │ │ └── MarketOptions.java │ │ │ ├── pixeldungeon │ │ │ └── support │ │ │ │ ├── AdsUtils.java │ │ │ │ ├── EuConsent.java │ │ │ │ ├── GooglePlayReferrer.java │ │ │ │ ├── IapAdapter.java │ │ │ │ └── PlayGamesAdapter.java │ │ │ └── platform │ │ │ ├── EventCollector.java │ │ │ └── RemoteConfig.java │ ├── googlePlay │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── nyrds │ │ │ │ ├── market │ │ │ │ ├── GoogleIapCheck.java │ │ │ │ ├── GooglePlayServices.java │ │ │ │ ├── MarketApp.java │ │ │ │ └── MarketOptions.java │ │ │ │ ├── pixeldungeon │ │ │ │ └── support │ │ │ │ │ ├── AdMob.java │ │ │ │ │ ├── AdMobBannerProvider.java │ │ │ │ │ ├── AdMobInterstitialProvider.java │ │ │ │ │ ├── AdsUtils.java │ │ │ │ │ ├── AppodealAdapter.java │ │ │ │ │ ├── AppodealBannerProvider.java │ │ │ │ │ ├── AppodealInterstitialProvider.java │ │ │ │ │ ├── AppodealRewardVideoProvider.java │ │ │ │ │ ├── EuConsent.java │ │ │ │ │ ├── GoogleRewardVideoAds.java │ │ │ │ │ ├── IapAdapter.java │ │ │ │ │ ├── PlayGamesAdapter.java │ │ │ │ │ ├── YandexBannerProvider.java │ │ │ │ │ ├── YandexInterstitialProvider.java │ │ │ │ │ └── YandexRewardVideoAds.java │ │ │ │ └── platform │ │ │ │ ├── EventCollector.java │ │ │ │ └── RemoteConfig.java │ │ └── res │ │ │ └── xml │ │ │ └── gma_ad_services_config.xml │ ├── huawei │ │ └── java │ │ │ └── com │ │ │ └── nyrds │ │ │ ├── android │ │ │ └── RemixedDungeonApp.java │ │ │ └── pixeldungeon │ │ │ ├── ml │ │ │ └── EventCollector.java │ │ │ └── support │ │ │ ├── AdsUtils.java │ │ │ ├── EuConsent.java │ │ │ ├── GooglePlayReferrer.java │ │ │ ├── IapAdapter.java │ │ │ └── PlayGames.java │ ├── main │ │ ├── assets │ │ │ ├── Spider_Pod_Animation.png │ │ │ ├── Spider_Queen_Buffed.png │ │ │ ├── air_elemental.png │ │ │ ├── amulet.png │ │ │ ├── bat.png │ │ │ ├── blacksmith.png │ │ │ ├── brute.png │ │ │ ├── burning_fist.png │ │ │ ├── crab.png │ │ │ ├── demon.png │ │ │ ├── dm300.png │ │ │ ├── effects │ │ │ │ ├── attack_effect.png │ │ │ │ ├── body_armor.json │ │ │ │ ├── body_armor.png │ │ │ │ ├── cauldron_effect.json │ │ │ │ ├── cauldron_effect.png │ │ │ │ ├── cloak.json │ │ │ │ ├── cloak.png │ │ │ │ ├── dash.json │ │ │ │ ├── dash.png │ │ │ │ ├── effects.png │ │ │ │ ├── hide_in_grass.json │ │ │ │ ├── hide_in_grass.png │ │ │ │ ├── ice_cube_effect.png │ │ │ │ ├── lava_fountain.json │ │ │ │ ├── lava_fountain.png │ │ │ │ ├── magic_arrow.json │ │ │ │ ├── mana_shield_effect.json │ │ │ │ ├── mana_shield_effect.png │ │ │ │ ├── rogue_spike.png │ │ │ │ ├── shield_blocked.json │ │ │ │ ├── shield_broken.json │ │ │ │ ├── shield_effect.png │ │ │ │ ├── smash_blast.json │ │ │ │ ├── smash_blast.png │ │ │ │ ├── smash_blast2.png │ │ │ │ ├── smash_fist.json │ │ │ │ ├── smash_fist.png │ │ │ │ ├── specks.png │ │ │ │ ├── trap_effect.png │ │ │ │ ├── waterwell_effect.json │ │ │ │ └── waterwell_effect.png │ │ │ ├── eye.png │ │ │ ├── fire_elemental.png │ │ │ ├── fonts │ │ │ │ └── pixel_font.ttf │ │ │ ├── ghost.png │ │ │ ├── gnoll.png │ │ │ ├── golem.png │ │ │ ├── goo.png │ │ │ ├── hedgehog.png │ │ │ ├── hero │ │ │ │ ├── armor │ │ │ │ │ ├── AssasinArmor.png │ │ │ │ │ ├── BattleMageArmor.png │ │ │ │ │ ├── BerserkArmor.png │ │ │ │ │ ├── ChaosArmor.png │ │ │ │ │ ├── ClothArmor.png │ │ │ │ │ ├── ElfArmor.png │ │ │ │ │ ├── FreeRunnerArmor.png │ │ │ │ │ ├── GladiatorArmor.png │ │ │ │ │ ├── GnollArmor.png │ │ │ │ │ ├── GothicArmor.png │ │ │ │ │ ├── HuntressArmor.png │ │ │ │ │ ├── LeatherArmor.png │ │ │ │ │ ├── MageArmor.png │ │ │ │ │ ├── MailArmor.png │ │ │ │ │ ├── NecromancerArmor.png │ │ │ │ │ ├── NecromancerRobe.png │ │ │ │ │ ├── PlateArmor.png │ │ │ │ │ ├── RatArmor.png │ │ │ │ │ ├── RogueArmor.png │ │ │ │ │ ├── ScaleArmor.png │ │ │ │ │ ├── ScoutArmor.png │ │ │ │ │ ├── ShamanArmor.png │ │ │ │ │ ├── SniperArmor.png │ │ │ │ │ ├── SpiderArmor.png │ │ │ │ │ ├── WardenArmor.png │ │ │ │ │ ├── WarlockArmor.png │ │ │ │ │ ├── WarriorArmor.png │ │ │ │ │ ├── collar │ │ │ │ │ │ ├── BattleMageArmor.png │ │ │ │ │ │ └── WarlockArmor.png │ │ │ │ │ └── helmet │ │ │ │ │ │ ├── BerserkArmor.png │ │ │ │ │ │ ├── ElfArmor.png │ │ │ │ │ │ ├── FreeRunnerArmor.png │ │ │ │ │ │ ├── GladiatorArmor.png │ │ │ │ │ │ ├── HuntressArmor.png │ │ │ │ │ │ ├── NecromancerArmor.png │ │ │ │ │ │ ├── ShamanArmor.png │ │ │ │ │ │ ├── SniperArmor.png │ │ │ │ │ │ ├── SpiderArmor.png │ │ │ │ │ │ └── WardenArmor.png │ │ │ │ ├── body │ │ │ │ │ ├── gnoll.png │ │ │ │ │ ├── lich.png │ │ │ │ │ ├── man.png │ │ │ │ │ ├── statue.png │ │ │ │ │ ├── warlock.png │ │ │ │ │ └── woman.png │ │ │ │ ├── death │ │ │ │ │ ├── common.png │ │ │ │ │ ├── statue.png │ │ │ │ │ └── warlock.png │ │ │ │ ├── empty.png │ │ │ │ ├── head │ │ │ │ │ ├── ELF_NONE.png │ │ │ │ │ ├── ELF_SCOUT.png │ │ │ │ │ ├── ELF_SHAMAN.png │ │ │ │ │ ├── GNOLL_NONE.png │ │ │ │ │ ├── HUNTRESS_NONE.png │ │ │ │ │ ├── HUNTRESS_SNIPER.png │ │ │ │ │ ├── HUNTRESS_WARDEN.png │ │ │ │ │ ├── MAGE_BATTLEMAGE.png │ │ │ │ │ ├── MAGE_NONE.png │ │ │ │ │ ├── MAGE_WARLOCK.png │ │ │ │ │ ├── NECROMANCER_LICH.png │ │ │ │ │ ├── NECROMANCER_NONE.png │ │ │ │ │ ├── ROGUE_ASSASSIN.png │ │ │ │ │ ├── ROGUE_FREERUNNER.png │ │ │ │ │ ├── ROGUE_NONE.png │ │ │ │ │ ├── WARRIOR_BERSERKER.png │ │ │ │ │ ├── WARRIOR_GLADIATOR.png │ │ │ │ │ ├── WARRIOR_NONE.png │ │ │ │ │ ├── facial_hair │ │ │ │ │ │ ├── MAGE_BATTLEMAGE_FACIAL_HAIR.png │ │ │ │ │ │ ├── MAGE_WARLOCK_FACIAL_HAIR.png │ │ │ │ │ │ ├── NECROMANCER_NONE_FACIAL_HAIR.png │ │ │ │ │ │ └── WARRIOR_BERSERKER_FACIAL_HAIR.png │ │ │ │ │ ├── hair │ │ │ │ │ │ ├── ELF_NONE_HAIR.png │ │ │ │ │ │ ├── ELF_SCOUT_HAIR.png │ │ │ │ │ │ ├── ELF_SHAMAN_HAIR.png │ │ │ │ │ │ ├── GNOLL_NONE_HAIR.png │ │ │ │ │ │ ├── HUNTRESS_NONE_HAIR.png │ │ │ │ │ │ ├── HUNTRESS_SNIPER_HAIR.png │ │ │ │ │ │ ├── HUNTRESS_WARDEN_HAIR.png │ │ │ │ │ │ ├── MAGE_BATTLEMAGE_HAIR.png │ │ │ │ │ │ ├── MAGE_NONE_HAIR.png │ │ │ │ │ │ ├── MAGE_WARLOCK_HAIR.png │ │ │ │ │ │ ├── NECROMANCER_LICH_HAIR.png │ │ │ │ │ │ ├── NECROMANCER_NONE_HAIR.png │ │ │ │ │ │ ├── ROGUE_ASSASSIN_HAIR.png │ │ │ │ │ │ ├── ROGUE_FREERUNNER_HAIR.png │ │ │ │ │ │ ├── ROGUE_NONE_HAIR.png │ │ │ │ │ │ ├── WARRIOR_BERSERKER_HAIR.png │ │ │ │ │ │ ├── WARRIOR_GLADIATOR_HAIR.png │ │ │ │ │ │ └── WARRIOR_NONE_HAIR.png │ │ │ │ │ └── statue.png │ │ │ │ ├── initHeroes.json │ │ │ │ ├── initHeroesDebug.json │ │ │ │ └── spritesDesc │ │ │ │ │ ├── ArmoredStatue.json │ │ │ │ │ └── Hero.json │ │ │ ├── hero_modern │ │ │ │ ├── accessories │ │ │ │ │ ├── Bowknot.png │ │ │ │ │ ├── Capotain.png │ │ │ │ │ ├── ChaosHelmet.png │ │ │ │ │ ├── DogeMask.png │ │ │ │ │ ├── Fez.png │ │ │ │ │ ├── FilteredMask.png │ │ │ │ │ ├── FullFaceMask.png │ │ │ │ │ ├── GnollCostume.png │ │ │ │ │ ├── KrampusHead.png │ │ │ │ │ ├── MedicineMask.png │ │ │ │ │ ├── NekoEars.png │ │ │ │ │ ├── Nightcap.png │ │ │ │ │ ├── PirateSet.png │ │ │ │ │ ├── PlagueDoctorMask.png │ │ │ │ │ ├── PlagueDoctorMaskHood.png │ │ │ │ │ ├── Pumpkin.png │ │ │ │ │ ├── RabbitEars.png │ │ │ │ │ ├── Rudolph.png │ │ │ │ │ ├── SantaHat.png │ │ │ │ │ ├── Shades.png │ │ │ │ │ ├── Ushanka.png │ │ │ │ │ ├── VampireSkull.png │ │ │ │ │ ├── WizardHat.png │ │ │ │ │ └── ZombieMask.png │ │ │ │ ├── armor │ │ │ │ │ ├── AlchemistArmor.png │ │ │ │ │ ├── AssasinArmor.png │ │ │ │ │ ├── BattleMageArmor.png │ │ │ │ │ ├── BerserkArmor.png │ │ │ │ │ ├── ChaosArmor.png │ │ │ │ │ ├── ClericArmor.png │ │ │ │ │ ├── ClothArmor.png │ │ │ │ │ ├── ElfArmor.png │ │ │ │ │ ├── FreeRunnerArmor.png │ │ │ │ │ ├── GladiatorArmor.png │ │ │ │ │ ├── GnollArmor.png │ │ │ │ │ ├── GothicArmor.png │ │ │ │ │ ├── GuardianArmor.png │ │ │ │ │ ├── HuntressArmor.png │ │ │ │ │ ├── LeatherArmor.png │ │ │ │ │ ├── MageArmor.png │ │ │ │ │ ├── MailArmor.png │ │ │ │ │ ├── NecromancerArmor.png │ │ │ │ │ ├── NecromancerRobe.png │ │ │ │ │ ├── PaladinArmor.png │ │ │ │ │ ├── PlagueDoctorArmor.png │ │ │ │ │ ├── PlateArmor.png │ │ │ │ │ ├── PriestArmor.png │ │ │ │ │ ├── RatArmor.png │ │ │ │ │ ├── RogueArmor.png │ │ │ │ │ ├── ScaleArmor.png │ │ │ │ │ ├── ScoutArmor.png │ │ │ │ │ ├── ShamanArmor.png │ │ │ │ │ ├── SniperArmor.png │ │ │ │ │ ├── SpiderArmor.png │ │ │ │ │ ├── TransmuterArmor.png │ │ │ │ │ ├── WardenArmor.png │ │ │ │ │ ├── WarlockArmor.png │ │ │ │ │ ├── WarriorArmor.png │ │ │ │ │ ├── WitchdoctorArmor.png │ │ │ │ │ ├── boots │ │ │ │ │ │ ├── AlchemistArmor_boots_gnoll.png │ │ │ │ │ │ ├── AlchemistArmor_boots_lich.png │ │ │ │ │ │ ├── AlchemistArmor_boots_man.png │ │ │ │ │ │ ├── AlchemistArmor_boots_woman.png │ │ │ │ │ │ ├── ClericArmor_boots_gnoll.png │ │ │ │ │ │ ├── ClericArmor_boots_lich.png │ │ │ │ │ │ ├── ClericArmor_boots_man.png │ │ │ │ │ │ ├── ClericArmor_boots_woman.png │ │ │ │ │ │ ├── ClothArmor_gnoll.png │ │ │ │ │ │ ├── ClothArmor_lich.png │ │ │ │ │ │ ├── ClothArmor_man.png │ │ │ │ │ │ ├── ClothArmor_woman.png │ │ │ │ │ │ ├── GothicArmor_gnoll.png │ │ │ │ │ │ ├── GothicArmor_lich.png │ │ │ │ │ │ ├── GothicArmor_man.png │ │ │ │ │ │ ├── GothicArmor_woman.png │ │ │ │ │ │ ├── LeatherArmor_gnoll.png │ │ │ │ │ │ ├── LeatherArmor_lich.png │ │ │ │ │ │ ├── LeatherArmor_man.png │ │ │ │ │ │ ├── LeatherArmor_woman.png │ │ │ │ │ │ ├── MailArmor_gnoll.png │ │ │ │ │ │ ├── MailArmor_lich.png │ │ │ │ │ │ ├── MailArmor_man.png │ │ │ │ │ │ ├── MailArmor_woman.png │ │ │ │ │ │ ├── PaladinArmor_boots_gnoll.png │ │ │ │ │ │ ├── PaladinArmor_boots_lich.png │ │ │ │ │ │ ├── PaladinArmor_boots_man.png │ │ │ │ │ │ ├── PaladinArmor_boots_woman.png │ │ │ │ │ │ ├── PlagueDoctorArmor_boots_gnoll.png │ │ │ │ │ │ ├── PlagueDoctorArmor_boots_lich.png │ │ │ │ │ │ ├── PlagueDoctorArmor_boots_man.png │ │ │ │ │ │ ├── PlagueDoctorArmor_boots_woman.png │ │ │ │ │ │ ├── PlateArmor_gnoll.png │ │ │ │ │ │ ├── PlateArmor_lich.png │ │ │ │ │ │ ├── PlateArmor_man.png │ │ │ │ │ │ ├── PlateArmor_woman.png │ │ │ │ │ │ ├── PriestArmor_gnoll.png │ │ │ │ │ │ ├── PriestArmor_lich.png │ │ │ │ │ │ ├── PriestArmor_man.png │ │ │ │ │ │ ├── PriestArmor_woman.png │ │ │ │ │ │ ├── ScaleArmor_gnoll.png │ │ │ │ │ │ ├── ScaleArmor_lich.png │ │ │ │ │ │ ├── ScaleArmor_man.png │ │ │ │ │ │ ├── ScaleArmor_woman.png │ │ │ │ │ │ ├── TransmuterArmor_boots_gnoll.png │ │ │ │ │ │ ├── TransmuterArmor_boots_lich.png │ │ │ │ │ │ ├── TransmuterArmor_boots_man.png │ │ │ │ │ │ └── TransmuterArmor_boots_woman.png │ │ │ │ │ ├── collar │ │ │ │ │ │ ├── BattleMageArmor.png │ │ │ │ │ │ └── WarlockArmor.png │ │ │ │ │ ├── helmet │ │ │ │ │ │ ├── AlchemistArmor.png │ │ │ │ │ │ ├── BerserkArmor.png │ │ │ │ │ │ ├── ClericArmor.png │ │ │ │ │ │ ├── ElfArmor.png │ │ │ │ │ │ ├── FreeRunnerArmor.png │ │ │ │ │ │ ├── GladiatorArmor.png │ │ │ │ │ │ ├── HuntressArmor.png │ │ │ │ │ │ ├── NecromancerArmor.png │ │ │ │ │ │ ├── PaladinArmor.png │ │ │ │ │ │ ├── PlagueDoctorArmor.png │ │ │ │ │ │ ├── PriestArmor.png │ │ │ │ │ │ ├── ShamanArmor.png │ │ │ │ │ │ ├── SniperArmor.png │ │ │ │ │ │ ├── SpiderArmor.png │ │ │ │ │ │ ├── TransmuterArmor.png │ │ │ │ │ │ ├── WardenArmor.png │ │ │ │ │ │ └── WitchdoctorArmor.png │ │ │ │ │ └── shoulders │ │ │ │ │ │ ├── AlchemistArmor_bow.png │ │ │ │ │ │ ├── AlchemistArmor_crossbow.png │ │ │ │ │ │ ├── AlchemistArmor_heavy.png │ │ │ │ │ │ ├── AlchemistArmor_left.png │ │ │ │ │ │ ├── AlchemistArmor_right.png │ │ │ │ │ │ ├── AlchemistArmor_spear.png │ │ │ │ │ │ ├── AlchemistArmor_staff.png │ │ │ │ │ │ ├── ClericArmor_bow.png │ │ │ │ │ │ ├── ClericArmor_crossbow.png │ │ │ │ │ │ ├── ClericArmor_heavy.png │ │ │ │ │ │ ├── ClericArmor_left.png │ │ │ │ │ │ ├── ClericArmor_right.png │ │ │ │ │ │ ├── ClericArmor_spear.png │ │ │ │ │ │ ├── ClericArmor_staff.png │ │ │ │ │ │ ├── ClothArmor_bow.png │ │ │ │ │ │ ├── ClothArmor_crossbow.png │ │ │ │ │ │ ├── ClothArmor_heavy.png │ │ │ │ │ │ ├── ClothArmor_left.png │ │ │ │ │ │ ├── ClothArmor_right.png │ │ │ │ │ │ ├── ClothArmor_spear.png │ │ │ │ │ │ ├── ClothArmor_staff.png │ │ │ │ │ │ ├── GothicArmor_bow.png │ │ │ │ │ │ ├── GothicArmor_crossbow.png │ │ │ │ │ │ ├── GothicArmor_heavy.png │ │ │ │ │ │ ├── GothicArmor_left.png │ │ │ │ │ │ ├── GothicArmor_right.png │ │ │ │ │ │ ├── GothicArmor_spear.png │ │ │ │ │ │ ├── GothicArmor_staff.png │ │ │ │ │ │ ├── LeatherArmor_bow.png │ │ │ │ │ │ ├── LeatherArmor_crossbow.png │ │ │ │ │ │ ├── LeatherArmor_heavy.png │ │ │ │ │ │ ├── LeatherArmor_left.png │ │ │ │ │ │ ├── LeatherArmor_right.png │ │ │ │ │ │ ├── LeatherArmor_spear.png │ │ │ │ │ │ ├── LeatherArmor_staff.png │ │ │ │ │ │ ├── MailArmor_bow.png │ │ │ │ │ │ ├── MailArmor_crossbow.png │ │ │ │ │ │ ├── MailArmor_heavy.png │ │ │ │ │ │ ├── MailArmor_left.png │ │ │ │ │ │ ├── MailArmor_right.png │ │ │ │ │ │ ├── MailArmor_spear.png │ │ │ │ │ │ ├── MailArmor_staff.png │ │ │ │ │ │ ├── PaladinArmor_bow.png │ │ │ │ │ │ ├── PaladinArmor_crossbow.png │ │ │ │ │ │ ├── PaladinArmor_heavy.png │ │ │ │ │ │ ├── PaladinArmor_left.png │ │ │ │ │ │ ├── PaladinArmor_right.png │ │ │ │ │ │ ├── PaladinArmor_spear.png │ │ │ │ │ │ ├── PaladinArmor_staff.png │ │ │ │ │ │ ├── PlagueDoctorArmor_bow.png │ │ │ │ │ │ ├── PlagueDoctorArmor_crossbow.png │ │ │ │ │ │ ├── PlagueDoctorArmor_heavy.png │ │ │ │ │ │ ├── PlagueDoctorArmor_left.png │ │ │ │ │ │ ├── PlagueDoctorArmor_right.png │ │ │ │ │ │ ├── PlagueDoctorArmor_spear.png │ │ │ │ │ │ ├── PlagueDoctorArmor_staff.png │ │ │ │ │ │ ├── PlateArmor_bow.png │ │ │ │ │ │ ├── PlateArmor_crossbow.png │ │ │ │ │ │ ├── PlateArmor_heavy.png │ │ │ │ │ │ ├── PlateArmor_left.png │ │ │ │ │ │ ├── PlateArmor_right.png │ │ │ │ │ │ ├── PlateArmor_spear.png │ │ │ │ │ │ ├── PlateArmor_staff.png │ │ │ │ │ │ ├── PriestArmor_bow.png │ │ │ │ │ │ ├── PriestArmor_crossbow.png │ │ │ │ │ │ ├── PriestArmor_heavy.png │ │ │ │ │ │ ├── PriestArmor_left.png │ │ │ │ │ │ ├── PriestArmor_right.png │ │ │ │ │ │ ├── PriestArmor_spear.png │ │ │ │ │ │ ├── PriestArmor_staff.png │ │ │ │ │ │ ├── ScaleArmor_bow.png │ │ │ │ │ │ ├── ScaleArmor_crossbow.png │ │ │ │ │ │ ├── ScaleArmor_heavy.png │ │ │ │ │ │ ├── ScaleArmor_left.png │ │ │ │ │ │ ├── ScaleArmor_right.png │ │ │ │ │ │ ├── ScaleArmor_spear.png │ │ │ │ │ │ ├── ScaleArmor_staff.png │ │ │ │ │ │ ├── TransmuterArmor_bow.png │ │ │ │ │ │ ├── TransmuterArmor_crossbow.png │ │ │ │ │ │ ├── TransmuterArmor_heavy.png │ │ │ │ │ │ ├── TransmuterArmor_left.png │ │ │ │ │ │ ├── TransmuterArmor_right.png │ │ │ │ │ │ ├── TransmuterArmor_spear.png │ │ │ │ │ │ └── TransmuterArmor_staff.png │ │ │ │ ├── body │ │ │ │ │ ├── gnoll.png │ │ │ │ │ ├── hands │ │ │ │ │ │ ├── gnoll_bow_left.png │ │ │ │ │ │ ├── gnoll_bow_right.png │ │ │ │ │ │ ├── gnoll_crossbow_hit_right.png │ │ │ │ │ │ ├── gnoll_crossbow_left.png │ │ │ │ │ │ ├── gnoll_crossbow_right.png │ │ │ │ │ │ ├── gnoll_heavy_left.png │ │ │ │ │ │ ├── gnoll_heavy_right.png │ │ │ │ │ │ ├── gnoll_none_left.png │ │ │ │ │ │ ├── gnoll_none_right.png │ │ │ │ │ │ ├── gnoll_spear_left.png │ │ │ │ │ │ ├── gnoll_spear_right.png │ │ │ │ │ │ ├── gnoll_staff_left.png │ │ │ │ │ │ ├── gnoll_staff_right.png │ │ │ │ │ │ ├── gnoll_sword_left.png │ │ │ │ │ │ ├── gnoll_sword_right.png │ │ │ │ │ │ ├── lich_bow_left.png │ │ │ │ │ │ ├── lich_bow_right.png │ │ │ │ │ │ ├── lich_crossbow_hit_right.png │ │ │ │ │ │ ├── lich_crossbow_left.png │ │ │ │ │ │ ├── lich_crossbow_right.png │ │ │ │ │ │ ├── lich_heavy_left.png │ │ │ │ │ │ ├── lich_heavy_right.png │ │ │ │ │ │ ├── lich_none_left.png │ │ │ │ │ │ ├── lich_none_right.png │ │ │ │ │ │ ├── lich_spear_left.png │ │ │ │ │ │ ├── lich_spear_right.png │ │ │ │ │ │ ├── lich_staff_left.png │ │ │ │ │ │ ├── lich_staff_right.png │ │ │ │ │ │ ├── lich_sword_left.png │ │ │ │ │ │ ├── lich_sword_right.png │ │ │ │ │ │ ├── man_bow_left.png │ │ │ │ │ │ ├── man_bow_right.png │ │ │ │ │ │ ├── man_crossbow_hit_right.png │ │ │ │ │ │ ├── man_crossbow_left.png │ │ │ │ │ │ ├── man_crossbow_right.png │ │ │ │ │ │ ├── man_heavy_left.png │ │ │ │ │ │ ├── man_heavy_right.png │ │ │ │ │ │ ├── man_none_left.png │ │ │ │ │ │ ├── man_none_right.png │ │ │ │ │ │ ├── man_spear_left.png │ │ │ │ │ │ ├── man_spear_right.png │ │ │ │ │ │ ├── man_staff_left.png │ │ │ │ │ │ ├── man_staff_right.png │ │ │ │ │ │ ├── man_sword_left.png │ │ │ │ │ │ ├── man_sword_right.png │ │ │ │ │ │ ├── statue_bow_left.png │ │ │ │ │ │ ├── statue_bow_right.png │ │ │ │ │ │ ├── statue_crossbow_hit_right.png │ │ │ │ │ │ ├── statue_crossbow_left.png │ │ │ │ │ │ ├── statue_crossbow_right.png │ │ │ │ │ │ ├── statue_heavy_left.png │ │ │ │ │ │ ├── statue_heavy_right.png │ │ │ │ │ │ ├── statue_none_left.png │ │ │ │ │ │ ├── statue_none_right.png │ │ │ │ │ │ ├── statue_spear_left.png │ │ │ │ │ │ ├── statue_spear_right.png │ │ │ │ │ │ ├── statue_staff_left.png │ │ │ │ │ │ ├── statue_staff_right.png │ │ │ │ │ │ ├── statue_sword_left.png │ │ │ │ │ │ ├── statue_sword_right.png │ │ │ │ │ │ ├── warlock_bow_left.png │ │ │ │ │ │ ├── warlock_bow_right.png │ │ │ │ │ │ ├── warlock_crossbow_hit_right.png │ │ │ │ │ │ ├── warlock_crossbow_left.png │ │ │ │ │ │ ├── warlock_crossbow_right.png │ │ │ │ │ │ ├── warlock_heavy_left.png │ │ │ │ │ │ ├── warlock_heavy_right.png │ │ │ │ │ │ ├── warlock_none_left.png │ │ │ │ │ │ ├── warlock_none_right.png │ │ │ │ │ │ ├── warlock_spear_left.png │ │ │ │ │ │ ├── warlock_spear_right.png │ │ │ │ │ │ ├── warlock_staff_left.png │ │ │ │ │ │ ├── warlock_staff_right.png │ │ │ │ │ │ ├── warlock_sword_left.png │ │ │ │ │ │ ├── warlock_sword_right.png │ │ │ │ │ │ ├── woman_bow_left.png │ │ │ │ │ │ ├── woman_bow_right.png │ │ │ │ │ │ ├── woman_crossbow_hit_right.png │ │ │ │ │ │ ├── woman_crossbow_left.png │ │ │ │ │ │ ├── woman_crossbow_right.png │ │ │ │ │ │ ├── woman_heavy_left.png │ │ │ │ │ │ ├── woman_heavy_right.png │ │ │ │ │ │ ├── woman_none_left.png │ │ │ │ │ │ ├── woman_none_right.png │ │ │ │ │ │ ├── woman_spear_left.png │ │ │ │ │ │ ├── woman_spear_right.png │ │ │ │ │ │ ├── woman_staff_left.png │ │ │ │ │ │ ├── woman_staff_right.png │ │ │ │ │ │ ├── woman_sword_left.png │ │ │ │ │ │ └── woman_sword_right.png │ │ │ │ │ ├── lich.png │ │ │ │ │ ├── man.png │ │ │ │ │ ├── statue.png │ │ │ │ │ ├── warlock.png │ │ │ │ │ └── woman.png │ │ │ │ ├── death │ │ │ │ │ ├── common.png │ │ │ │ │ ├── statue.png │ │ │ │ │ └── warlock.png │ │ │ │ ├── empty.png │ │ │ │ ├── head │ │ │ │ │ ├── DOCTOR_ALCHEMIST.png │ │ │ │ │ ├── DOCTOR_NONE.png │ │ │ │ │ ├── DOCTOR_TRANSMUTER.png │ │ │ │ │ ├── ELF_NONE.png │ │ │ │ │ ├── ELF_SCOUT.png │ │ │ │ │ ├── ELF_SHAMAN.png │ │ │ │ │ ├── GNOLL_GUARDIAN.png │ │ │ │ │ ├── GNOLL_NONE.png │ │ │ │ │ ├── GNOLL_WITCHDOCTOR.png │ │ │ │ │ ├── HUNTRESS_NONE.png │ │ │ │ │ ├── HUNTRESS_SNIPER.png │ │ │ │ │ ├── HUNTRESS_WARDEN.png │ │ │ │ │ ├── MAGE_BATTLEMAGE.png │ │ │ │ │ ├── MAGE_NONE.png │ │ │ │ │ ├── MAGE_WARLOCK.png │ │ │ │ │ ├── NECROMANCER_LICH.png │ │ │ │ │ ├── NECROMANCER_NONE.png │ │ │ │ │ ├── PRIEST_CLERIC.png │ │ │ │ │ ├── PRIEST_NONE.png │ │ │ │ │ ├── PRIEST_PALADIN.png │ │ │ │ │ ├── ROGUE_ASSASSIN.png │ │ │ │ │ ├── ROGUE_FREERUNNER.png │ │ │ │ │ ├── ROGUE_NONE.png │ │ │ │ │ ├── WARRIOR_BERSERKER.png │ │ │ │ │ ├── WARRIOR_GLADIATOR.png │ │ │ │ │ ├── WARRIOR_NONE.png │ │ │ │ │ ├── facial_hair │ │ │ │ │ │ ├── GNOLL_GUARDIAN_FACIAL_HAIR.png │ │ │ │ │ │ ├── GNOLL_NONE_FACIAL_HAIR.png │ │ │ │ │ │ ├── GNOLL_WITCHDOCTOR_FACIAL_HAIR.png │ │ │ │ │ │ ├── MAGE_BATTLEMAGE_FACIAL_HAIR.png │ │ │ │ │ │ ├── MAGE_WARLOCK_FACIAL_HAIR.png │ │ │ │ │ │ ├── NECROMANCER_NONE_FACIAL_HAIR.png │ │ │ │ │ │ └── WARRIOR_BERSERKER_FACIAL_HAIR.png │ │ │ │ │ ├── hair │ │ │ │ │ │ ├── DOCTOR_ALCHEMIST_HAIR.png │ │ │ │ │ │ ├── DOCTOR_NONE_HAIR.png │ │ │ │ │ │ ├── DOCTOR_TRANSMUTER_HAIR.png │ │ │ │ │ │ ├── ELF_NONE_HAIR.png │ │ │ │ │ │ ├── ELF_SCOUT_HAIR.png │ │ │ │ │ │ ├── ELF_SHAMAN_HAIR.png │ │ │ │ │ │ ├── GNOLL_GUARDIAN_HAIR.png │ │ │ │ │ │ ├── GNOLL_NONE_HAIR.png │ │ │ │ │ │ ├── GNOLL_WITCHDOCTOR_HAIR.png │ │ │ │ │ │ ├── HUNTRESS_NONE_HAIR.png │ │ │ │ │ │ ├── HUNTRESS_SNIPER_HAIR.png │ │ │ │ │ │ ├── HUNTRESS_WARDEN_HAIR.png │ │ │ │ │ │ ├── MAGE_BATTLEMAGE_HAIR.png │ │ │ │ │ │ ├── MAGE_NONE_HAIR.png │ │ │ │ │ │ ├── MAGE_WARLOCK_HAIR.png │ │ │ │ │ │ ├── NECROMANCER_LICH_HAIR.png │ │ │ │ │ │ ├── NECROMANCER_NONE_HAIR.png │ │ │ │ │ │ ├── PRIEST_CLERIC_HAIR.png │ │ │ │ │ │ ├── PRIEST_NONE_HAIR.png │ │ │ │ │ │ ├── PRIEST_PALADIN_HAIR.png │ │ │ │ │ │ ├── ROGUE_ASSASSIN_HAIR.png │ │ │ │ │ │ ├── ROGUE_FREERUNNER_HAIR.png │ │ │ │ │ │ ├── ROGUE_NONE_HAIR.png │ │ │ │ │ │ ├── WARRIOR_BERSERKER_HAIR.png │ │ │ │ │ │ ├── WARRIOR_GLADIATOR_HAIR.png │ │ │ │ │ │ └── WARRIOR_NONE_HAIR.png │ │ │ │ │ └── statue.png │ │ │ │ ├── items │ │ │ │ │ ├── BattleAxe_right.png │ │ │ │ │ ├── BoneSaw_left.png │ │ │ │ │ ├── BoneSaw_right.png │ │ │ │ │ ├── ChaosBow_right.png │ │ │ │ │ ├── ChaosShield_back_left.png │ │ │ │ │ ├── ChaosShield_left.png │ │ │ │ │ ├── ChaosShield_right.png │ │ │ │ │ ├── ChaosSword_right.png │ │ │ │ │ ├── Claymore_right.png │ │ │ │ │ ├── CompositeCrossbow_right.png │ │ │ │ │ ├── CompoundBow_right.png │ │ │ │ │ ├── Dagger_left.png │ │ │ │ │ ├── Dagger_right.png │ │ │ │ │ ├── Glaive_right.png │ │ │ │ │ ├── GoldenSword_left.png │ │ │ │ │ ├── GoldenSword_right.png │ │ │ │ │ ├── Halberd_right.png │ │ │ │ │ ├── Hammer_right.png │ │ │ │ │ ├── Knuckles_left.png │ │ │ │ │ ├── Knuckles_right.png │ │ │ │ │ ├── Kusarigama_left.png │ │ │ │ │ ├── Kusarigama_right.png │ │ │ │ │ ├── Longsword_right.png │ │ │ │ │ ├── Mace_left.png │ │ │ │ │ ├── Mace_right.png │ │ │ │ │ ├── Pickaxe_left.png │ │ │ │ │ ├── Pickaxe_right.png │ │ │ │ │ ├── Quarterstaff_right.png │ │ │ │ │ ├── RoyalShield_back_left.png │ │ │ │ │ ├── RoyalShield_left.png │ │ │ │ │ ├── RoyalShield_right.png │ │ │ │ │ ├── RubyBow_right.png │ │ │ │ │ ├── RubyCrossbow_right.png │ │ │ │ │ ├── SacrificialSword_left.png │ │ │ │ │ ├── SacrificialSword_right.png │ │ │ │ │ ├── ShortSword_left.png │ │ │ │ │ ├── ShortSword_right.png │ │ │ │ │ ├── Spear_right.png │ │ │ │ │ ├── StrongShield_back_left.png │ │ │ │ │ ├── StrongShield_left.png │ │ │ │ │ ├── StrongShield_right.png │ │ │ │ │ ├── Sword_left.png │ │ │ │ │ ├── Sword_right.png │ │ │ │ │ ├── TacticalCrossbow_Hit_right.png │ │ │ │ │ ├── TacticalCrossbow_Zap_right.png │ │ │ │ │ ├── TestWeapon1_right.png │ │ │ │ │ ├── Tomahawk2_left.png │ │ │ │ │ ├── Tomahawk_left.png │ │ │ │ │ ├── Tomahawk_right.png │ │ │ │ │ ├── ToughShield_back_left.png │ │ │ │ │ ├── ToughShield_left.png │ │ │ │ │ ├── ToughShield_right.png │ │ │ │ │ ├── Wand_right.png │ │ │ │ │ ├── WarHammer_right.png │ │ │ │ │ ├── WoodenBow_right.png │ │ │ │ │ ├── WoodenCrossbow_right.png │ │ │ │ │ ├── WoodenShield_back_left.png │ │ │ │ │ ├── WoodenShield_left.png │ │ │ │ │ └── WoodenShield_right.png │ │ │ │ └── spritesDesc │ │ │ │ │ ├── Hero.json │ │ │ │ │ └── Statue.json │ │ │ ├── html │ │ │ │ ├── directory_listing_template.html │ │ │ │ ├── json_editor_template.html │ │ │ │ ├── list_template.html │ │ │ │ ├── lua_editor_template.html │ │ │ │ ├── not_found_template.html │ │ │ │ ├── root_template.html │ │ │ │ └── upload_form_template.html │ │ │ ├── items.png │ │ │ ├── items │ │ │ │ ├── accessories.png │ │ │ │ ├── ammo.png │ │ │ │ ├── armor.png │ │ │ │ ├── artifacts.png │ │ │ │ ├── bags.png │ │ │ │ ├── books.png │ │ │ │ ├── candle.png │ │ │ │ ├── chaosArmor.png │ │ │ │ ├── chaosBow.png │ │ │ │ ├── chaosShield.png │ │ │ │ ├── chaosStaff.png │ │ │ │ ├── chaosSword.png │ │ │ │ ├── daggers.png │ │ │ │ ├── drinks.png │ │ │ │ ├── food.png │ │ │ │ ├── gnoll_tomahawks.png │ │ │ │ ├── gold.png │ │ │ │ ├── kusarigama.png │ │ │ │ ├── mastery_items.png │ │ │ │ ├── materials.png │ │ │ │ ├── objects.png │ │ │ │ ├── overlays.png │ │ │ │ ├── placeholders.png │ │ │ │ ├── polearms.png │ │ │ │ ├── potions.png │ │ │ │ ├── ranged.png │ │ │ │ ├── rings.png │ │ │ │ ├── scrolls.png │ │ │ │ ├── scrolls2.png │ │ │ │ ├── seeds.png │ │ │ │ ├── shields.png │ │ │ │ ├── shrooms.png │ │ │ │ ├── swords.png │ │ │ │ ├── vials.png │ │ │ │ ├── wands.png │ │ │ │ └── wands_remastered.png │ │ │ ├── king.png │ │ │ ├── larva.png │ │ │ ├── levelObjects │ │ │ │ ├── Unknown.json │ │ │ │ ├── barrels.png │ │ │ │ ├── barricade.json │ │ │ │ ├── candle.json │ │ │ │ ├── candle.png │ │ │ │ ├── chest_1.json │ │ │ │ ├── chest_2.json │ │ │ │ ├── chest_3.json │ │ │ │ ├── objects.png │ │ │ │ ├── pedestal.json │ │ │ │ ├── pile_of_stones.json │ │ │ │ ├── portalGate.json │ │ │ │ ├── portals.png │ │ │ │ ├── pot.json │ │ │ │ ├── rogue_spikes.png │ │ │ │ ├── statue.json │ │ │ │ ├── statue_sp.json │ │ │ │ ├── traps.png │ │ │ │ └── well.json │ │ │ ├── levelsDesc │ │ │ │ ├── Bestiary.json │ │ │ │ ├── Church.json │ │ │ │ ├── Church_2021_03.json │ │ │ │ ├── Cinema.json │ │ │ │ ├── Cinema_2021_03.json │ │ │ │ ├── Dungeon.json │ │ │ │ ├── Dungeon_debug.json │ │ │ │ ├── Dungeon_no_town.json │ │ │ │ ├── Fortune.json │ │ │ │ ├── FortuneShop.json │ │ │ │ ├── Fortune_2021_03.json │ │ │ │ ├── Inn_2021_03.json │ │ │ │ ├── LevelPortal.json │ │ │ │ ├── Library.json │ │ │ │ ├── Library_2021_03.json │ │ │ │ ├── Portal.json │ │ │ │ ├── PortalShrine.json │ │ │ │ ├── QuestDemo1.json │ │ │ │ ├── ScriptsArena.json │ │ │ │ ├── Shop.json │ │ │ │ ├── Shop_2021_03.json │ │ │ │ ├── Shop_Town.json │ │ │ │ ├── SpidersTreasury.json │ │ │ │ ├── TestLevel.lua │ │ │ │ ├── TestLevelGuts.json │ │ │ │ ├── TestLevelRandom.json │ │ │ │ ├── TestLevelSewers.json │ │ │ │ ├── TestNecrotismDemo.json │ │ │ │ ├── Theater.json │ │ │ │ ├── TiledTest.json │ │ │ │ ├── Town.json │ │ │ │ ├── TownChurch.json │ │ │ │ ├── TownLibrary.json │ │ │ │ ├── TownShopTreasury.json │ │ │ │ ├── Town_2021_03.json │ │ │ │ ├── Town_2021_03_desktop.json │ │ │ │ ├── Treasury.json │ │ │ │ ├── chess_level.json │ │ │ │ ├── empty_interior.json │ │ │ │ └── vwArena.json │ │ │ ├── logic.png │ │ │ ├── mimic.png │ │ │ ├── mimic_pie.png │ │ │ ├── mobs │ │ │ │ ├── BeeHive.png │ │ │ │ ├── artificernpc.png │ │ │ │ ├── azuterronnpc.png │ │ │ │ ├── barman.png │ │ │ │ ├── bee.png │ │ │ │ ├── bella_npc.png │ │ │ │ ├── black_cat_npc.png │ │ │ │ ├── caged_kobold.png │ │ │ │ ├── cold_spirit.png │ │ │ │ ├── crystal.png │ │ │ │ ├── death_knight.png │ │ │ │ ├── deathling.png │ │ │ │ ├── dread_knight.png │ │ │ │ ├── earth_elemental.png │ │ │ │ ├── enslavedsoul.png │ │ │ │ ├── exploding_skull.png │ │ │ │ ├── fortuneteller_npc.png │ │ │ │ ├── gnoll_zombie.png │ │ │ │ ├── golden_statue.png │ │ │ │ ├── guards.png │ │ │ │ ├── iceGuardian.png │ │ │ │ ├── ice_elemental.png │ │ │ │ ├── inquirer_npc.png │ │ │ │ ├── jar_of_souls.png │ │ │ │ ├── kobold.png │ │ │ │ ├── kobold_icemancer.png │ │ │ │ ├── lich.png │ │ │ │ ├── mimic_amulet.png │ │ │ │ ├── necromancernpc.png │ │ │ │ ├── nightmare.png │ │ │ │ ├── nyrdie.png │ │ │ │ ├── plaguedoctor.png │ │ │ │ ├── pseudo_rat.png │ │ │ │ ├── reception.png │ │ │ │ ├── runicskull.png │ │ │ │ ├── scarecrownpc.png │ │ │ │ ├── shadowlord.png │ │ │ │ ├── snail.png │ │ │ │ ├── spiritOfPain.png │ │ │ │ ├── town_bishop.png │ │ │ │ ├── town_bishop2.png │ │ │ │ ├── town_bishop3.png │ │ │ │ ├── town_healer.png │ │ │ │ ├── town_librarian.png │ │ │ │ ├── town_service_man.png │ │ │ │ ├── town_townsfolk_bard.png │ │ │ │ ├── town_townsfolk_drunkard.png │ │ │ │ ├── town_townsfolk_innkeeper.png │ │ │ │ ├── town_townsfolk_man.png │ │ │ │ ├── town_townsfolk_man_bald.png │ │ │ │ ├── town_townsfolk_man_brown.png │ │ │ │ ├── town_townsfolk_mercenary.png │ │ │ │ ├── town_townsfolk_servant.png │ │ │ │ ├── treacherous_spirit.png │ │ │ │ ├── water_elemental.png │ │ │ │ ├── worm.png │ │ │ │ ├── yogs_brain.png │ │ │ │ ├── yogs_eye.png │ │ │ │ ├── yogs_heart.png │ │ │ │ ├── yogs_teeth.png │ │ │ │ └── zombie.png │ │ │ ├── mobsDesc │ │ │ │ ├── BardNPC.json │ │ │ │ ├── BarmanNPC.json │ │ │ │ ├── Bee.json │ │ │ │ ├── BeeHive.json │ │ │ │ ├── BishopNPC.json │ │ │ │ ├── BlackCat.json │ │ │ │ ├── BlackCatNPC.json │ │ │ │ ├── BlackRat.json │ │ │ │ ├── DM300.json │ │ │ │ ├── DeepSnail.json │ │ │ │ ├── DemoNpc1.json │ │ │ │ ├── DrunkardNPC.json │ │ │ │ ├── Goo.json │ │ │ │ ├── IceGuardianCore.json │ │ │ │ ├── InnKeeperNPC.json │ │ │ │ ├── InquirerNPC.json │ │ │ │ ├── King.json │ │ │ │ ├── Lich.json │ │ │ │ ├── MazeShadow.json │ │ │ │ ├── MercenaryNPC.json │ │ │ │ ├── PlagueDoctor.json │ │ │ │ ├── RemixedFetidRat.json │ │ │ │ ├── ServantNPC.json │ │ │ │ ├── ShadowLord.json │ │ │ │ ├── ShamanElder.json │ │ │ │ ├── Snail.json │ │ │ │ ├── SpiderElite.json │ │ │ │ ├── SpiderQueen.json │ │ │ │ ├── Tengu.json │ │ │ │ ├── Yog.json │ │ │ │ └── YogsEye.json │ │ │ ├── monk.png │ │ │ ├── pet.png │ │ │ ├── piranha.png │ │ │ ├── plants.png │ │ │ ├── rat.png │ │ │ ├── ratking.png │ │ │ ├── rotting_fist.png │ │ │ ├── scorpio.png │ │ │ ├── scripts │ │ │ │ ├── actors │ │ │ │ │ ├── Burn.lua │ │ │ │ │ ├── Chess.lua │ │ │ │ │ ├── ClickTest.lua │ │ │ │ │ ├── DemoJournal.lua │ │ │ │ │ ├── DemoLog.lua │ │ │ │ │ ├── Freeze.lua │ │ │ │ │ ├── LoSpawner.lua │ │ │ │ │ ├── Snow.lua │ │ │ │ │ └── town │ │ │ │ │ │ └── Compass.lua │ │ │ │ ├── ai │ │ │ │ │ ├── BlackCat.lua │ │ │ │ │ ├── None.lua │ │ │ │ │ └── NpcDefault.lua │ │ │ │ ├── buffs │ │ │ │ │ ├── BodyArmor.lua │ │ │ │ │ ├── ChampionOfAir.lua │ │ │ │ │ ├── ChampionOfEarth.lua │ │ │ │ │ ├── ChampionOfFire.lua │ │ │ │ │ ├── ChampionOfWater.lua │ │ │ │ │ ├── ChaosShieldLeft.lua │ │ │ │ │ ├── Cloak.lua │ │ │ │ │ ├── Counter.lua │ │ │ │ │ ├── DieHard.lua │ │ │ │ │ ├── Encumbrance.lua │ │ │ │ │ ├── GasesImmunity.lua │ │ │ │ │ ├── ManaShield.lua │ │ │ │ │ ├── ShieldLeft.lua │ │ │ │ │ ├── TestBuff.lua │ │ │ │ │ └── UnsuitableItem.lua │ │ │ │ ├── items │ │ │ │ │ ├── ArmorTemplate.lua │ │ │ │ │ ├── BoneSaw.lua │ │ │ │ │ ├── ChaosShield.lua │ │ │ │ │ ├── FriedFish.lua │ │ │ │ │ ├── FrozenFish.lua │ │ │ │ │ ├── HookedDagger.lua │ │ │ │ │ ├── Kunai.lua │ │ │ │ │ ├── PlagueDoctorMask.lua │ │ │ │ │ ├── RawFish.lua │ │ │ │ │ ├── RemixedPickaxe.lua │ │ │ │ │ ├── RottenFish.lua │ │ │ │ │ ├── RoyalShield.lua │ │ │ │ │ ├── StrongShield.lua │ │ │ │ │ ├── TenguLiver.lua │ │ │ │ │ ├── Tomahawk2.lua │ │ │ │ │ ├── ToughShield.lua │ │ │ │ │ ├── WoodenShield.lua │ │ │ │ │ └── test │ │ │ │ │ │ └── TestItem.lua │ │ │ │ ├── lib │ │ │ │ │ ├── StackTracePlus.lua │ │ │ │ │ ├── actor.lua │ │ │ │ │ ├── ads.lua │ │ │ │ │ ├── ai.lua │ │ │ │ │ ├── buff.lua │ │ │ │ │ ├── commonClasses.lua │ │ │ │ │ ├── item.lua │ │ │ │ │ ├── itemSelector.lua │ │ │ │ │ ├── json.lua │ │ │ │ │ ├── levelObject.lua │ │ │ │ │ ├── lru.lua │ │ │ │ │ ├── mob.lua │ │ │ │ │ ├── object.lua │ │ │ │ │ ├── quest.lua │ │ │ │ │ ├── serpent.lua │ │ │ │ │ ├── shields.lua │ │ │ │ │ ├── spell.lua │ │ │ │ │ ├── storage.lua │ │ │ │ │ ├── trap.lua │ │ │ │ │ └── util.lua │ │ │ │ ├── mobs │ │ │ │ │ ├── Assasin.lua │ │ │ │ │ ├── BeeSpawner.lua │ │ │ │ │ ├── Buffer.lua │ │ │ │ │ ├── DeepSnail.lua │ │ │ │ │ ├── Dummy.lua │ │ │ │ │ ├── Hero.lua │ │ │ │ │ ├── Hydra.lua │ │ │ │ │ ├── MazeShadow.lua │ │ │ │ │ ├── Mirror.lua │ │ │ │ │ ├── NatureAura.lua │ │ │ │ │ ├── Rat.lua │ │ │ │ │ ├── RemixedFetidRat.lua │ │ │ │ │ ├── ScriptedThief.lua │ │ │ │ │ ├── ShamanElder.lua │ │ │ │ │ ├── SpiderElite.lua │ │ │ │ │ ├── Stinger.lua │ │ │ │ │ └── Talkie.lua │ │ │ │ ├── npc │ │ │ │ │ ├── Bard.lua │ │ │ │ │ ├── Barman.lua │ │ │ │ │ ├── Bishop.lua │ │ │ │ │ ├── BlackCat.lua │ │ │ │ │ ├── Drunkard.lua │ │ │ │ │ ├── Innkeeper.lua │ │ │ │ │ ├── Inquirer.lua │ │ │ │ │ ├── ItemSelectorExample.lua │ │ │ │ │ ├── Mercenary.lua │ │ │ │ │ ├── PlagueDoctor.lua │ │ │ │ │ ├── QuestGiverDemo.lua │ │ │ │ │ └── Servant.lua │ │ │ │ ├── objects │ │ │ │ │ ├── barricade.lua │ │ │ │ │ ├── pedestal.lua │ │ │ │ │ ├── pile_of_stones.lua │ │ │ │ │ ├── pot.lua │ │ │ │ │ ├── statue.lua │ │ │ │ │ ├── statue_sp.lua │ │ │ │ │ └── well.lua │ │ │ │ ├── services │ │ │ │ │ └── scene.lua │ │ │ │ ├── spells │ │ │ │ │ ├── Backstab.lua │ │ │ │ │ ├── BodyArmor.lua │ │ │ │ │ ├── Calm.lua │ │ │ │ │ ├── Charm.lua │ │ │ │ │ ├── Cloak.lua │ │ │ │ │ ├── CurseItem.lua │ │ │ │ │ ├── CustomSpellsList.lua │ │ │ │ │ ├── DarkSacrifice.lua │ │ │ │ │ ├── Dash.lua │ │ │ │ │ ├── DieHard.lua │ │ │ │ │ ├── Exhumation.lua │ │ │ │ │ ├── Haste.lua │ │ │ │ │ ├── Heal.lua │ │ │ │ │ ├── HideInGrass.lua │ │ │ │ │ ├── KunaiThrow.lua │ │ │ │ │ ├── LightningBolt.lua │ │ │ │ │ ├── MagicArrow.lua │ │ │ │ │ ├── NatureArmor.lua │ │ │ │ │ ├── Order.lua │ │ │ │ │ ├── Possess.lua │ │ │ │ │ ├── RaiseDead.lua │ │ │ │ │ ├── Roar.lua │ │ │ │ │ ├── ShootInEye.lua │ │ │ │ │ ├── Smash.lua │ │ │ │ │ ├── SpellsByAffinity.lua │ │ │ │ │ ├── Sprout.lua │ │ │ │ │ ├── SummonBeast.lua │ │ │ │ │ ├── TestSpell.lua │ │ │ │ │ └── TownPortal.lua │ │ │ │ ├── startup │ │ │ │ │ └── quirks.lua │ │ │ │ ├── stats │ │ │ │ │ └── shields.lua │ │ │ │ ├── stuff │ │ │ │ │ └── chess │ │ │ │ │ │ └── sunfish.lua │ │ │ │ ├── traps │ │ │ │ │ ├── Chasm.lua │ │ │ │ │ ├── Counter.lua │ │ │ │ │ ├── CutScene.lua │ │ │ │ │ ├── DemoTransmute.lua │ │ │ │ │ ├── Disarm.lua │ │ │ │ │ ├── Drain.lua │ │ │ │ │ ├── Fall.lua │ │ │ │ │ ├── LevelActor.lua │ │ │ │ │ ├── Message.lua │ │ │ │ │ ├── Sandbox.lua │ │ │ │ │ ├── Spawner.lua │ │ │ │ │ └── SpecialBeacon.lua │ │ │ │ └── userServices │ │ │ │ │ ├── autoTestAi.lua │ │ │ │ │ ├── gameScene.lua │ │ │ │ │ └── interlevelScene.lua │ │ │ ├── shadow.png │ │ │ ├── shaman.png │ │ │ ├── sheep.png │ │ │ ├── shopkeeper.png │ │ │ ├── skeleton.png │ │ │ ├── sound │ │ │ │ ├── body_armor.ogg │ │ │ │ ├── dash.ogg │ │ │ │ ├── game.ogg │ │ │ │ ├── ost_boss_ambient.ogg │ │ │ │ ├── ost_boss_fight.ogg │ │ │ │ ├── ost_caves.ogg │ │ │ │ ├── ost_ice_caves.ogg │ │ │ │ ├── ost_portal_level.ogg │ │ │ │ ├── ost_town_1.ogg │ │ │ │ ├── smash.ogg │ │ │ │ ├── snd_alert.mp3 │ │ │ │ ├── snd_badge.mp3 │ │ │ │ ├── snd_beacon.ogg │ │ │ │ ├── snd_bite.ogg │ │ │ │ ├── snd_blast.mp3 │ │ │ │ ├── snd_bones.mp3 │ │ │ │ ├── snd_boss.mp3 │ │ │ │ ├── snd_burning.mp3 │ │ │ │ ├── snd_challenge.mp3 │ │ │ │ ├── snd_charms.mp3 │ │ │ │ ├── snd_click.mp3 │ │ │ │ ├── snd_crystal.mp3 │ │ │ │ ├── snd_cursed.mp3 │ │ │ │ ├── snd_death.ogg │ │ │ │ ├── snd_descend.ogg │ │ │ │ ├── snd_dewdrop.ogg │ │ │ │ ├── snd_dominance.mp3 │ │ │ │ ├── snd_door_open.ogg │ │ │ │ ├── snd_drink.mp3 │ │ │ │ ├── snd_eat.mp3 │ │ │ │ ├── snd_evoke.mp3 │ │ │ │ ├── snd_explosion.ogg │ │ │ │ ├── snd_falling.ogg │ │ │ │ ├── snd_ghost.ogg │ │ │ │ ├── snd_gold.mp3 │ │ │ │ ├── snd_hit.mp3 │ │ │ │ ├── snd_item.mp3 │ │ │ │ ├── snd_levelup.ogg │ │ │ │ ├── snd_lightning.ogg │ │ │ │ ├── snd_lullaby.mp3 │ │ │ │ ├── snd_mastery.mp3 │ │ │ │ ├── snd_meld.mp3 │ │ │ │ ├── snd_mimic.mp3 │ │ │ │ ├── snd_miss.mp3 │ │ │ │ ├── snd_plant.mp3 │ │ │ │ ├── snd_puff.mp3 │ │ │ │ ├── snd_ray.ogg │ │ │ │ ├── snd_read.ogg │ │ │ │ ├── snd_rocks.mp3 │ │ │ │ ├── snd_rotten_drop.mp3 │ │ │ │ ├── snd_secret.mp3 │ │ │ │ ├── snd_shatter.ogg │ │ │ │ ├── snd_step.mp3 │ │ │ │ ├── snd_teleport.mp3 │ │ │ │ ├── snd_tomb.mp3 │ │ │ │ ├── snd_trap.mp3 │ │ │ │ ├── snd_unlock.mp3 │ │ │ │ ├── snd_water.mp3 │ │ │ │ ├── snd_zap.mp3 │ │ │ │ ├── surface.ogg │ │ │ │ └── theme.ogg │ │ │ ├── spell_icons.png │ │ │ ├── spellsIcons │ │ │ │ ├── Light.png │ │ │ │ ├── berserkcy.png │ │ │ │ ├── common.png │ │ │ │ ├── elemental.png │ │ │ │ ├── elemental_all.png │ │ │ │ ├── hunting.png │ │ │ │ ├── naturegift.png │ │ │ │ ├── necromancy.png │ │ │ │ ├── ninja.png │ │ │ │ ├── obsolete.png │ │ │ │ ├── possession.png │ │ │ │ ├── rogue.png │ │ │ │ ├── warrior.png │ │ │ │ └── witchcraft.png │ │ │ ├── spider_egg.png │ │ │ ├── spider_exploding.png │ │ │ ├── spider_mind.png │ │ │ ├── spider_nest.png │ │ │ ├── spider_queen.png │ │ │ ├── spider_servant.png │ │ │ ├── spinner.png │ │ │ ├── spritesDesc │ │ │ │ ├── Acidic.json │ │ │ │ ├── AirElemental.json │ │ │ │ ├── Albino.json │ │ │ │ ├── ArtificerNPC.json │ │ │ │ ├── AzuterronNPC.json │ │ │ │ ├── Bandit.json │ │ │ │ ├── BardNPC.json │ │ │ │ ├── BarmanNPC.json │ │ │ │ ├── Bat.json │ │ │ │ ├── Bee.json │ │ │ │ ├── BeeHive.json │ │ │ │ ├── BellaNPC.json │ │ │ │ ├── BishopNPC.json │ │ │ │ ├── BlackCat.json │ │ │ │ ├── BlackRat.json │ │ │ │ ├── Blacksmith.json │ │ │ │ ├── Brute.json │ │ │ │ ├── BurningFist.json │ │ │ │ ├── CagedKobold.json │ │ │ │ ├── ColdSpirit.json │ │ │ │ ├── Crab.json │ │ │ │ ├── Crystal.json │ │ │ │ ├── DM300.json │ │ │ │ ├── DeathKnight.json │ │ │ │ ├── Deathling.json │ │ │ │ ├── DeepSnail.json │ │ │ │ ├── DreadKnight.json │ │ │ │ ├── DrunkardNPC.json │ │ │ │ ├── EarthElemental.json │ │ │ │ ├── EnslavedSoul.json │ │ │ │ ├── ExplodingSkull.json │ │ │ │ ├── Eye.json │ │ │ │ ├── FetidRat.json │ │ │ │ ├── FireElemental.json │ │ │ │ ├── FortuneTellerNPC.json │ │ │ │ ├── Ghost.json │ │ │ │ ├── Gnoll.json │ │ │ │ ├── GoldenStatue.json │ │ │ │ ├── Golem.json │ │ │ │ ├── Goo.json │ │ │ │ ├── HealerNPC.json │ │ │ │ ├── Hedgehog.json │ │ │ │ ├── IceElemental.json │ │ │ │ ├── IceGuardian.json │ │ │ │ ├── IceGuardianCore.json │ │ │ │ ├── Imp.json │ │ │ │ ├── InnKeeperNPC.json │ │ │ │ ├── InquirerNPC.json │ │ │ │ ├── JarOfSouls.json │ │ │ │ ├── King.json │ │ │ │ ├── Kobold.json │ │ │ │ ├── KoboldIcemancer.json │ │ │ │ ├── Larva.json │ │ │ │ ├── LibrarianNPC.json │ │ │ │ ├── Lich.json │ │ │ │ ├── MercenaryNPC.json │ │ │ │ ├── Mimic.json │ │ │ │ ├── MimicAmulet.json │ │ │ │ ├── MimicPie.json │ │ │ │ ├── Monk.json │ │ │ │ ├── NecromancerNPC.json │ │ │ │ ├── Nightmare.json │ │ │ │ ├── Piranha.json │ │ │ │ ├── PlagueDoctorNPC.json │ │ │ │ ├── PseudoRat.json │ │ │ │ ├── Rat.json │ │ │ │ ├── RatKing.json │ │ │ │ ├── RottingFist.json │ │ │ │ ├── RunicSkull.json │ │ │ │ ├── ScarecrowNPC.json │ │ │ │ ├── Scorpio.json │ │ │ │ ├── Senior.json │ │ │ │ ├── ServantNPC.json │ │ │ │ ├── ServiceManNPC.json │ │ │ │ ├── Shadow.json │ │ │ │ ├── ShadowLord.json │ │ │ │ ├── Shaman.json │ │ │ │ ├── ShamanElder.json │ │ │ │ ├── Sheep.json │ │ │ │ ├── Shielded.json │ │ │ │ ├── Shopkeeper.json │ │ │ │ ├── Skeleton.json │ │ │ │ ├── Snail.json │ │ │ │ ├── SociologistNPC.json │ │ │ │ ├── SpiderEgg.json │ │ │ │ ├── SpiderElite.json │ │ │ │ ├── SpiderExploding.json │ │ │ │ ├── SpiderGuard.json │ │ │ │ ├── SpiderMind.json │ │ │ │ ├── SpiderMindAmber.json │ │ │ │ ├── SpiderNest.json │ │ │ │ ├── SpiderQueen.json │ │ │ │ ├── SpiderServant.json │ │ │ │ ├── Spinner.json │ │ │ │ ├── SpiritOfPain.json │ │ │ │ ├── Statue.json │ │ │ │ ├── Succubus.json │ │ │ │ ├── SuspiciousRat.json │ │ │ │ ├── Swarm.json │ │ │ │ ├── Tengu.json │ │ │ │ ├── Thief.json │ │ │ │ ├── TownGuardNPC.json │ │ │ │ ├── TownsfolkMovieNPC.json │ │ │ │ ├── TownsfolkNPC.json │ │ │ │ ├── TownsfolkSilentNPC.json │ │ │ │ ├── TreacherousSpirit.json │ │ │ │ ├── Undead.json │ │ │ │ ├── WandMaker.json │ │ │ │ ├── Warlock.json │ │ │ │ ├── WaterElemental.json │ │ │ │ ├── Worm.json │ │ │ │ ├── Wraith.json │ │ │ │ ├── YogsBrain.json │ │ │ │ ├── YogsEye.json │ │ │ │ ├── YogsHeart.json │ │ │ │ ├── YogsTeeth.json │ │ │ │ ├── Zombie.json │ │ │ │ └── ZombieGnoll.json │ │ │ ├── statue.png │ │ │ ├── succubus.png │ │ │ ├── swarm.png │ │ │ ├── tengu.png │ │ │ ├── thief.png │ │ │ ├── tilemapDesc │ │ │ │ └── tiles_x_default.json │ │ │ ├── tiles0.png │ │ │ ├── tiles0_x.png │ │ │ ├── tiles1.png │ │ │ ├── tiles1_boss.png │ │ │ ├── tiles1_x.png │ │ │ ├── tiles2.png │ │ │ ├── tiles2_x.png │ │ │ ├── tiles3.png │ │ │ ├── tiles4.png │ │ │ ├── tiles_guts_x.png │ │ │ ├── tiles_ice_caves_x.png │ │ │ ├── tiles_necropolis.png │ │ │ ├── tiles_portal.png │ │ │ ├── tiles_shadow_lord.png │ │ │ ├── tiles_spider_nest.png │ │ │ ├── tiles_spiders_nest_x.png │ │ │ ├── tiles_standalone_interior.png │ │ │ ├── tiles_town.png │ │ │ ├── tiles_town_inside.png │ │ │ ├── tiles_town_inside_2021_03.png │ │ │ ├── tiles_town_inside_summer.png │ │ │ ├── tiles_town_outside_summer.png │ │ │ ├── tiles_town_outside_winter.png │ │ │ ├── tiles_town_outside_wntr.png │ │ │ ├── tilesets │ │ │ │ ├── tiles_caves_xyz.png │ │ │ │ ├── tiles_guts_xyz.png │ │ │ │ ├── tiles_halls_xyz.png │ │ │ │ ├── tiles_ice_caves_xyz.png │ │ │ │ ├── tiles_metropolis_xyz.png │ │ │ │ ├── tiles_necropolis_xyz.png │ │ │ │ ├── tiles_prison_xyz.png │ │ │ │ ├── tiles_sewers_xyz.png │ │ │ │ └── tiles_spider_caves_xyz.png │ │ │ ├── ui │ │ │ │ ├── arcs1.png │ │ │ │ ├── arcs2.png │ │ │ │ ├── avatars.png │ │ │ │ ├── badges.png │ │ │ │ ├── banners.png │ │ │ │ ├── banners_supporter_1.png │ │ │ │ ├── banners_supporter_2.png │ │ │ │ ├── banners_supporter_3.png │ │ │ │ ├── banners_supporter_4.png │ │ │ │ ├── buffs.png │ │ │ │ ├── challenges.png │ │ │ │ ├── chrome.png │ │ │ │ ├── chrome_marble.png │ │ │ │ ├── chrome_supporter_1.png │ │ │ │ ├── chrome_supporter_2.png │ │ │ │ ├── chrome_supporter_3.png │ │ │ │ ├── chrome_supporter_4.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── exp_bar.png │ │ │ │ ├── fireball.png │ │ │ │ ├── font1x.png │ │ │ │ ├── font25x.png │ │ │ │ ├── hp_bar.png │ │ │ │ ├── icons.png │ │ │ │ ├── icons2.png │ │ │ │ ├── large_buffs.png │ │ │ │ ├── rus_banners.png │ │ │ │ ├── rus_banners_supporter_1.png │ │ │ │ ├── rus_banners_supporter_2.png │ │ │ │ ├── rus_banners_supporter_3.png │ │ │ │ ├── rus_banners_supporter_4.png │ │ │ │ ├── sp_bar.png │ │ │ │ ├── status_pane.png │ │ │ │ ├── status_pane_supporter_1.png │ │ │ │ ├── status_pane_supporter_2.png │ │ │ │ ├── status_pane_supporter_3.png │ │ │ │ ├── status_pane_supporter_4.png │ │ │ │ ├── surface.png │ │ │ │ ├── title.png │ │ │ │ ├── title_marble.png │ │ │ │ ├── title_pc.png │ │ │ │ ├── title_supporter_1.png │ │ │ │ ├── title_supporter_2.png │ │ │ │ ├── title_supporter_3.png │ │ │ │ ├── title_supporter_4.png │ │ │ │ ├── ui_icons12x12.png │ │ │ │ ├── ui_icons6x6.png │ │ │ │ ├── ukr_banners.png │ │ │ │ ├── ukr_banners_supporter_1.png │ │ │ │ ├── ukr_banners_supporter_2.png │ │ │ │ ├── ukr_banners_supporter_3.png │ │ │ │ ├── ukr_banners_supporter_4.png │ │ │ │ └── xyz_tiles.png │ │ │ ├── undead.png │ │ │ ├── wandmaker.png │ │ │ ├── warlock.png │ │ │ ├── water0.png │ │ │ ├── water1.png │ │ │ ├── water2.png │ │ │ ├── water3.png │ │ │ ├── water4.png │ │ │ ├── water_guts.png │ │ │ ├── water_ice_caves.png │ │ │ ├── water_necropolis.png │ │ │ ├── water_portal.png │ │ │ ├── water_spider_nest.png │ │ │ ├── web │ │ │ │ └── pixelcraft │ │ │ │ │ ├── Canvas.js │ │ │ │ │ ├── README.MD │ │ │ │ │ ├── gif.worker.js │ │ │ │ │ ├── global.css │ │ │ │ │ ├── icons │ │ │ │ │ └── logo.png │ │ │ │ │ ├── images │ │ │ │ │ ├── overview.png │ │ │ │ │ └── toolbar.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lib │ │ │ │ │ ├── Matrix.js │ │ │ │ │ ├── Shapes.js │ │ │ │ │ ├── Transformation.js │ │ │ │ │ ├── gif.js │ │ │ │ │ ├── gif.js.map │ │ │ │ │ └── gif.worker.js.map │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── sw.js │ │ │ ├── wraith.png │ │ │ └── yog.png │ │ ├── java │ │ │ └── com │ │ │ │ ├── nyrds │ │ │ │ ├── lua │ │ │ │ │ ├── LuaEngine.java │ │ │ │ │ ├── LuaEntryAction.java │ │ │ │ │ ├── LuaUtils.java │ │ │ │ │ └── RpdMathLib.java │ │ │ │ ├── pixeldungeon │ │ │ │ │ ├── ai │ │ │ │ │ │ ├── AiState.java │ │ │ │ │ │ ├── ControlledAi.java │ │ │ │ │ │ ├── CustomMobAi.java │ │ │ │ │ │ ├── Fleeing.java │ │ │ │ │ │ ├── Horrified.java │ │ │ │ │ │ ├── Hunting.java │ │ │ │ │ │ ├── KillOrder.java │ │ │ │ │ │ ├── MobAi.java │ │ │ │ │ │ ├── MoveOrder.java │ │ │ │ │ │ ├── Passive.java │ │ │ │ │ │ ├── RunningAmok.java │ │ │ │ │ │ ├── Sleeping.java │ │ │ │ │ │ ├── ThiefFleeing.java │ │ │ │ │ │ └── Wandering.java │ │ │ │ │ ├── effects │ │ │ │ │ │ ├── CustomClipEffect.java │ │ │ │ │ │ ├── DeathStroke.java │ │ │ │ │ │ ├── Devour.java │ │ │ │ │ │ ├── EffectsFactory.java │ │ │ │ │ │ ├── ICustomEffect.java │ │ │ │ │ │ ├── ISpriteEffect.java │ │ │ │ │ │ ├── ParticleEffect.java │ │ │ │ │ │ ├── ZapEffect.java │ │ │ │ │ │ └── emitters │ │ │ │ │ │ │ ├── BloodSink.java │ │ │ │ │ │ │ ├── Candle.java │ │ │ │ │ │ │ ├── IceVein.java │ │ │ │ │ │ │ ├── Smoke.java │ │ │ │ │ │ │ ├── Torch.java │ │ │ │ │ │ │ ├── Vein.java │ │ │ │ │ │ │ └── WaterSink.java │ │ │ │ │ ├── game │ │ │ │ │ │ ├── GameLoop.java │ │ │ │ │ │ ├── GamePreferences.java │ │ │ │ │ │ └── ModQuirks.java │ │ │ │ │ ├── items │ │ │ │ │ │ ├── Carcass.java │ │ │ │ │ │ ├── CustomItem.java │ │ │ │ │ │ ├── DummyItem.java │ │ │ │ │ │ ├── ItemOwner.java │ │ │ │ │ │ ├── ItemUtils.java │ │ │ │ │ │ ├── Treasury.java │ │ │ │ │ │ ├── accessories │ │ │ │ │ │ │ ├── Accessory.java │ │ │ │ │ │ │ ├── Bowknot.java │ │ │ │ │ │ │ ├── Capotain.java │ │ │ │ │ │ │ ├── ChaosHelmet.java │ │ │ │ │ │ │ ├── DogeMask.java │ │ │ │ │ │ │ ├── Fez.java │ │ │ │ │ │ │ ├── FilteredMask.java │ │ │ │ │ │ │ ├── FullFaceMask.java │ │ │ │ │ │ │ ├── GnollCostume.java │ │ │ │ │ │ │ ├── KrampusHead.java │ │ │ │ │ │ │ ├── MedicineMask.java │ │ │ │ │ │ │ ├── NekoEars.java │ │ │ │ │ │ │ ├── Nightcap.java │ │ │ │ │ │ │ ├── PirateSet.java │ │ │ │ │ │ │ ├── PlagueDoctorMask.java │ │ │ │ │ │ │ ├── PlagueDoctorMaskHood.java │ │ │ │ │ │ │ ├── Pumpkin.java │ │ │ │ │ │ │ ├── RabbitEars.java │ │ │ │ │ │ │ ├── Rudolph.java │ │ │ │ │ │ │ ├── SantaHat.java │ │ │ │ │ │ │ ├── Shades.java │ │ │ │ │ │ │ ├── Ushanka.java │ │ │ │ │ │ │ ├── VampireSkull.java │ │ │ │ │ │ │ ├── WizardHat.java │ │ │ │ │ │ │ └── ZombieMask.java │ │ │ │ │ │ ├── artifacts │ │ │ │ │ │ │ ├── CandleOfMindVision.java │ │ │ │ │ │ │ ├── IActingItem.java │ │ │ │ │ │ │ └── SpellBook.java │ │ │ │ │ │ ├── books │ │ │ │ │ │ │ ├── Book.java │ │ │ │ │ │ │ └── TomeOfKnowledge.java │ │ │ │ │ │ ├── chaos │ │ │ │ │ │ │ ├── ChaosArmor.java │ │ │ │ │ │ │ ├── ChaosBow.java │ │ │ │ │ │ │ ├── ChaosCommon.java │ │ │ │ │ │ │ ├── ChaosCrystal.java │ │ │ │ │ │ │ ├── ChaosStaff.java │ │ │ │ │ │ │ └── ChaosSword.java │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── ElvenBow.java │ │ │ │ │ │ │ ├── ElvenDagger.java │ │ │ │ │ │ │ ├── GnollTamahawk.java │ │ │ │ │ │ │ ├── GoldenSword.java │ │ │ │ │ │ │ ├── ItemFactory.java │ │ │ │ │ │ │ ├── Library.java │ │ │ │ │ │ │ ├── MasteryItem.java │ │ │ │ │ │ │ ├── RatArmor.java │ │ │ │ │ │ │ ├── RatHide.java │ │ │ │ │ │ │ ├── RatKingCrown.java │ │ │ │ │ │ │ ├── SacrificialSword.java │ │ │ │ │ │ │ ├── UnknownItem.java │ │ │ │ │ │ │ ├── WandOfShadowbolt.java │ │ │ │ │ │ │ ├── armor │ │ │ │ │ │ │ │ ├── DoctorArmor.java │ │ │ │ │ │ │ │ ├── NecromancerArmor.java │ │ │ │ │ │ │ │ ├── NecromancerRobe.java │ │ │ │ │ │ │ │ ├── PriestArmor.java │ │ │ │ │ │ │ │ └── SpiderArmor.java │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ │ └── CandyOfDeath.java │ │ │ │ │ │ │ └── rings │ │ │ │ │ │ │ │ └── RingOfFrost.java │ │ │ │ │ │ ├── drinks │ │ │ │ │ │ │ ├── Drink.java │ │ │ │ │ │ │ └── ManaPotion.java │ │ │ │ │ │ ├── food │ │ │ │ │ │ │ ├── Candy.java │ │ │ │ │ │ │ ├── ChristmasTurkey.java │ │ │ │ │ │ │ ├── Fairycap.java │ │ │ │ │ │ │ ├── LifeBolete.java │ │ │ │ │ │ │ ├── Milkberry.java │ │ │ │ │ │ │ ├── Mosscap.java │ │ │ │ │ │ │ ├── Mushroom.java │ │ │ │ │ │ │ ├── PumpkinPie.java │ │ │ │ │ │ │ └── RottenPumpkinPie.java │ │ │ │ │ │ ├── guts │ │ │ │ │ │ │ ├── HeartOfDarkness.java │ │ │ │ │ │ │ ├── PseudoAmulet.java │ │ │ │ │ │ │ ├── armor │ │ │ │ │ │ │ │ └── GothicArmor.java │ │ │ │ │ │ │ └── weapon │ │ │ │ │ │ │ │ ├── melee │ │ │ │ │ │ │ │ ├── Claymore.java │ │ │ │ │ │ │ │ ├── Halberd.java │ │ │ │ │ │ │ │ └── TitanSword.java │ │ │ │ │ │ │ │ └── ranged │ │ │ │ │ │ │ │ ├── Bow.java │ │ │ │ │ │ │ │ ├── CompositeCrossbow.java │ │ │ │ │ │ │ │ ├── Crossbow.java │ │ │ │ │ │ │ │ ├── RubyCrossbow.java │ │ │ │ │ │ │ │ ├── TacticalCrossbow.java │ │ │ │ │ │ │ │ └── WoodenCrossbow.java │ │ │ │ │ │ ├── icecaves │ │ │ │ │ │ │ ├── IceKey.java │ │ │ │ │ │ │ └── WandOfIcebolt.java │ │ │ │ │ │ ├── material │ │ │ │ │ │ │ ├── IceGuardianCoreModule.java │ │ │ │ │ │ │ ├── SoulShard.java │ │ │ │ │ │ │ └── SpiderQueenCarapace.java │ │ │ │ │ │ └── necropolis │ │ │ │ │ │ │ ├── BlackSkull.java │ │ │ │ │ │ │ ├── BlackSkullOfMastery.java │ │ │ │ │ │ │ └── BladeOfSouls.java │ │ │ │ │ ├── levels │ │ │ │ │ │ ├── CustomLevel.java │ │ │ │ │ │ ├── FakeLastLevel.java │ │ │ │ │ │ ├── GutsLevel.java │ │ │ │ │ │ ├── IceCavesBossLevel.java │ │ │ │ │ │ ├── IceCavesLevel.java │ │ │ │ │ │ ├── LevelTools.java │ │ │ │ │ │ ├── NecroBossLevel.java │ │ │ │ │ │ ├── NecroLevel.java │ │ │ │ │ │ ├── PredesignedLevel.java │ │ │ │ │ │ ├── RandomLevel.java │ │ │ │ │ │ ├── ShadowLordLevel.java │ │ │ │ │ │ ├── TestLevel.java │ │ │ │ │ │ ├── TownShopLevel.java │ │ │ │ │ │ ├── XTilemapConfiguration.java │ │ │ │ │ │ ├── cellCondition.java │ │ │ │ │ │ └── objects │ │ │ │ │ │ │ ├── Barrel.java │ │ │ │ │ │ │ ├── ConcreteBlock.java │ │ │ │ │ │ │ ├── CustomObject.java │ │ │ │ │ │ │ ├── Deco.java │ │ │ │ │ │ │ ├── ITrigger.java │ │ │ │ │ │ │ ├── LevelObject.java │ │ │ │ │ │ │ ├── LevelObjectsFactory.java │ │ │ │ │ │ │ ├── LibraryBook.java │ │ │ │ │ │ │ ├── PortalGate.java │ │ │ │ │ │ │ ├── PortalGateReceiver.java │ │ │ │ │ │ │ ├── PortalGateSender.java │ │ │ │ │ │ │ ├── Presser.java │ │ │ │ │ │ │ ├── Sign.java │ │ │ │ │ │ │ ├── Trap.java │ │ │ │ │ │ │ └── sprites │ │ │ │ │ │ │ └── LevelObjectSprite.java │ │ │ │ │ ├── mechanics │ │ │ │ │ │ ├── CommonActions.java │ │ │ │ │ │ ├── HasPositionOnLevel.java │ │ │ │ │ │ ├── LevelHelpers.java │ │ │ │ │ │ ├── LuaScript.java │ │ │ │ │ │ ├── NamedEntityKind.java │ │ │ │ │ │ ├── NamedEntityKindWithId.java │ │ │ │ │ │ ├── actors │ │ │ │ │ │ │ └── ScriptedActor.java │ │ │ │ │ │ ├── buffs │ │ │ │ │ │ │ ├── BuffFactory.java │ │ │ │ │ │ │ ├── CustomBuff.java │ │ │ │ │ │ │ ├── Moongrace.java │ │ │ │ │ │ │ ├── Necrotism.java │ │ │ │ │ │ │ └── RageBuff.java │ │ │ │ │ │ └── spells │ │ │ │ │ │ │ ├── CustomSpell.java │ │ │ │ │ │ │ ├── FreezeGlobe.java │ │ │ │ │ │ │ ├── Healing.java │ │ │ │ │ │ │ ├── Ignite.java │ │ │ │ │ │ │ ├── MagicTorch.java │ │ │ │ │ │ │ ├── RootSpell.java │ │ │ │ │ │ │ ├── Spell.java │ │ │ │ │ │ │ ├── SpellCellSelector.java │ │ │ │ │ │ │ ├── SpellCharSelector.java │ │ │ │ │ │ │ ├── SpellFactory.java │ │ │ │ │ │ │ ├── SpellHelper.java │ │ │ │ │ │ │ ├── SummonDeathling.java │ │ │ │ │ │ │ ├── SummoningSpell.java │ │ │ │ │ │ │ └── WindGust.java │ │ │ │ │ ├── ml │ │ │ │ │ │ └── actions │ │ │ │ │ │ │ ├── Ascend.java │ │ │ │ │ │ │ ├── Attack.java │ │ │ │ │ │ │ ├── CharAction.java │ │ │ │ │ │ │ ├── Descend.java │ │ │ │ │ │ │ ├── Examine.java │ │ │ │ │ │ │ ├── Expel.java │ │ │ │ │ │ │ ├── Interact.java │ │ │ │ │ │ │ ├── InteractObject.java │ │ │ │ │ │ │ ├── MapItemAction.java │ │ │ │ │ │ │ ├── Move.java │ │ │ │ │ │ │ ├── OpenChest.java │ │ │ │ │ │ │ ├── Order.java │ │ │ │ │ │ │ ├── OrderCellSelector.java │ │ │ │ │ │ │ ├── PickUp.java │ │ │ │ │ │ │ ├── Push.java │ │ │ │ │ │ │ ├── Steal.java │ │ │ │ │ │ │ ├── Taunt.java │ │ │ │ │ │ │ ├── Unlock.java │ │ │ │ │ │ │ ├── UseItem.java │ │ │ │ │ │ │ └── UseSpell.java │ │ │ │ │ ├── mobs │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── ArmoredStatue.java │ │ │ │ │ │ │ ├── BlinkAwayFromChar.java │ │ │ │ │ │ │ ├── Crystal.java │ │ │ │ │ │ │ ├── CustomMob.java │ │ │ │ │ │ │ ├── Deathling.java │ │ │ │ │ │ │ ├── GoldenStatue.java │ │ │ │ │ │ │ ├── IDepthAdjustable.java │ │ │ │ │ │ │ ├── IZapper.java │ │ │ │ │ │ │ ├── MobFactory.java │ │ │ │ │ │ │ ├── MobSpawner.java │ │ │ │ │ │ │ ├── MultiKindMob.java │ │ │ │ │ │ │ └── ShadowLord.java │ │ │ │ │ │ ├── elementals │ │ │ │ │ │ │ ├── AirElemental.java │ │ │ │ │ │ │ ├── EarthElemental.java │ │ │ │ │ │ │ ├── IceElemental.java │ │ │ │ │ │ │ └── WaterElemental.java │ │ │ │ │ │ ├── guts │ │ │ │ │ │ │ ├── BurningFist.java │ │ │ │ │ │ │ ├── Larva.java │ │ │ │ │ │ │ ├── MimicAmulet.java │ │ │ │ │ │ │ ├── Nightmare.java │ │ │ │ │ │ │ ├── PseudoRat.java │ │ │ │ │ │ │ ├── RottingFist.java │ │ │ │ │ │ │ ├── SpiritOfPain.java │ │ │ │ │ │ │ ├── SuspiciousRat.java │ │ │ │ │ │ │ ├── TreacherousSpirit.java │ │ │ │ │ │ │ ├── Worm.java │ │ │ │ │ │ │ ├── YogsBrain.java │ │ │ │ │ │ │ ├── YogsEye.java │ │ │ │ │ │ │ ├── YogsHeart.java │ │ │ │ │ │ │ ├── YogsTeeth.java │ │ │ │ │ │ │ └── ZombieGnoll.java │ │ │ │ │ │ ├── icecaves │ │ │ │ │ │ │ ├── ColdSpirit.java │ │ │ │ │ │ │ ├── IceGuardian.java │ │ │ │ │ │ │ ├── IceGuardianCore.java │ │ │ │ │ │ │ ├── Kobold.java │ │ │ │ │ │ │ └── KoboldIcemancer.java │ │ │ │ │ │ ├── necropolis │ │ │ │ │ │ │ ├── DeathKnight.java │ │ │ │ │ │ │ ├── DreadKnight.java │ │ │ │ │ │ │ ├── EnslavedSoul.java │ │ │ │ │ │ │ ├── ExplodingSkull.java │ │ │ │ │ │ │ ├── JarOfSouls.java │ │ │ │ │ │ │ ├── Lich.java │ │ │ │ │ │ │ ├── RunicSkull.java │ │ │ │ │ │ │ └── Zombie.java │ │ │ │ │ │ ├── npc │ │ │ │ │ │ │ ├── AzuterronNPC.java │ │ │ │ │ │ │ ├── BellaNPC.java │ │ │ │ │ │ │ ├── CagedKobold.java │ │ │ │ │ │ │ ├── FortuneTellerNPC.java │ │ │ │ │ │ │ ├── HealerNPC.java │ │ │ │ │ │ │ ├── ImmortalNPC.java │ │ │ │ │ │ │ ├── InquirerNPC.java │ │ │ │ │ │ │ ├── LibrarianNPC.java │ │ │ │ │ │ │ ├── NecromancerNPC.java │ │ │ │ │ │ │ ├── PlagueDoctorNPC.java │ │ │ │ │ │ │ ├── ScarecrowNPC.java │ │ │ │ │ │ │ ├── ServiceManNPC.java │ │ │ │ │ │ │ ├── SociologistNPC.java │ │ │ │ │ │ │ ├── TownGuardNPC.java │ │ │ │ │ │ │ ├── TownShopkeeper.java │ │ │ │ │ │ │ ├── TownsfolkMovieNPC.java │ │ │ │ │ │ │ ├── TownsfolkNPC.java │ │ │ │ │ │ │ └── TownsfolkSilentNPC.java │ │ │ │ │ │ └── spiders │ │ │ │ │ │ │ ├── SpiderEgg.java │ │ │ │ │ │ │ ├── SpiderExploding.java │ │ │ │ │ │ │ ├── SpiderGuard.java │ │ │ │ │ │ │ ├── SpiderMind.java │ │ │ │ │ │ │ ├── SpiderMindAmber.java │ │ │ │ │ │ │ ├── SpiderNest.java │ │ │ │ │ │ │ ├── SpiderQueen.java │ │ │ │ │ │ │ ├── SpiderServant.java │ │ │ │ │ │ │ └── SpiderSpawner.java │ │ │ │ │ ├── networking │ │ │ │ │ │ └── SClientLua.java │ │ │ │ │ ├── spiders │ │ │ │ │ │ └── levels │ │ │ │ │ │ │ ├── Chamber.java │ │ │ │ │ │ │ └── SpiderLevel.java │ │ │ │ │ ├── support │ │ │ │ │ │ └── AdsUtilsCommon.java │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── BuyItemSelector.java │ │ │ │ │ │ ├── CharsList.java │ │ │ │ │ │ ├── DungeonGenerator.java │ │ │ │ │ │ ├── EntityIdSource.java │ │ │ │ │ │ ├── EquippedItemCallback.java │ │ │ │ │ │ ├── GameControl.java │ │ │ │ │ │ ├── ItemCallback.java │ │ │ │ │ │ ├── ItemsList.java │ │ │ │ │ │ ├── ModDesc.java │ │ │ │ │ │ ├── Position.java │ │ │ │ │ │ └── SellItemSelector.java │ │ │ │ │ └── windows │ │ │ │ │ │ ├── BasicBox.java │ │ │ │ │ │ ├── ChallengeItem.java │ │ │ │ │ │ ├── DownloadProgressWindow.java │ │ │ │ │ │ ├── HBox.java │ │ │ │ │ │ ├── IPlaceable.java │ │ │ │ │ │ ├── ImageTab.java │ │ │ │ │ │ ├── LibraryListItem.java │ │ │ │ │ │ ├── LuaWndBagListener.java │ │ │ │ │ │ ├── MovieRewardTask.java │ │ │ │ │ │ ├── RedImageButton.java │ │ │ │ │ │ ├── ScrollableList.java │ │ │ │ │ │ ├── SpellButton.java │ │ │ │ │ │ ├── VBox.java │ │ │ │ │ │ ├── VHBox.java │ │ │ │ │ │ ├── WndAlchemy.java │ │ │ │ │ │ ├── WndBuffInfo.java │ │ │ │ │ │ ├── WndDifficultyOptions.java │ │ │ │ │ │ ├── WndFortuneTeller.java │ │ │ │ │ │ ├── WndGameplayCustomization.java │ │ │ │ │ │ ├── WndGameplaySettings.java │ │ │ │ │ │ ├── WndHelper.java │ │ │ │ │ │ ├── WndHeroSpells.java │ │ │ │ │ │ ├── WndInGameUiSettings.java │ │ │ │ │ │ ├── WndInstallingMod.java │ │ │ │ │ │ ├── WndLibrary.java │ │ │ │ │ │ ├── WndLibraryCatalogue.java │ │ │ │ │ │ ├── WndLibraryEntry.java │ │ │ │ │ │ ├── WndLocalModInstall.java │ │ │ │ │ │ ├── WndModsDisclaimer.java │ │ │ │ │ │ ├── WndMovieTheatre.java │ │ │ │ │ │ ├── WndOptionsLua.java │ │ │ │ │ │ ├── WndPortal.java │ │ │ │ │ │ ├── WndPortalReturn.java │ │ │ │ │ │ ├── WndPortalWarning.java │ │ │ │ │ │ ├── WndPriest.java │ │ │ │ │ │ ├── WndSadGhostNecro.java │ │ │ │ │ │ ├── WndShopOptions.java │ │ │ │ │ │ ├── WndSpellInfo.java │ │ │ │ │ │ ├── WndSurvey.java │ │ │ │ │ │ ├── WndTilesKind.java │ │ │ │ │ │ └── WndUiSettings.java │ │ │ │ ├── platform │ │ │ │ │ ├── PlatformAtomicInteger.java │ │ │ │ │ ├── app │ │ │ │ │ │ ├── BaseWebServer.java │ │ │ │ │ │ └── FilesystemAccess.java │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── RectF.java │ │ │ │ │ └── storage │ │ │ │ │ │ └── CommonPrefs.java │ │ │ │ └── util │ │ │ │ │ ├── DownloadStateListener.java │ │ │ │ │ ├── DownloadTask.java │ │ │ │ │ ├── GuiProperties.java │ │ │ │ │ ├── JsonHelper.java │ │ │ │ │ ├── LRUCache.java │ │ │ │ │ ├── ModError.java │ │ │ │ │ ├── ModdingBase.java │ │ │ │ │ ├── Mods.java │ │ │ │ │ ├── ParallelDownloadTask.java │ │ │ │ │ ├── Scrambler.java │ │ │ │ │ ├── SeededRandom.java │ │ │ │ │ ├── Unzip.java │ │ │ │ │ ├── UnzipStateListener.java │ │ │ │ │ ├── UnzipTask.java │ │ │ │ │ ├── Util.java │ │ │ │ │ └── WeakOptional.java │ │ │ │ └── watabou │ │ │ │ ├── glscripts │ │ │ │ ├── FogShader.java │ │ │ │ └── Script.java │ │ │ │ ├── gltextures │ │ │ │ ├── Atlas.java │ │ │ │ ├── Gradient.java │ │ │ │ ├── SmartTexture.java │ │ │ │ └── TextureCache.java │ │ │ │ ├── glwrap │ │ │ │ ├── Matrix.java │ │ │ │ └── Quad.java │ │ │ │ ├── noosa │ │ │ │ ├── Animation.java │ │ │ │ ├── BitmapText.java │ │ │ │ ├── Camera.java │ │ │ │ ├── ColorBlock.java │ │ │ │ ├── CompositeImage.java │ │ │ │ ├── CompositeMovieClip.java │ │ │ │ ├── CompositeTextureImage.java │ │ │ │ ├── Font.java │ │ │ │ ├── Gizmo.java │ │ │ │ ├── Group.java │ │ │ │ ├── Image.java │ │ │ │ ├── InterstitialPoint.java │ │ │ │ ├── MovieClip.java │ │ │ │ ├── NinePatch.java │ │ │ │ ├── PseudoPixel.java │ │ │ │ ├── ReturnOnlyOnce.java │ │ │ │ ├── Scene.java │ │ │ │ ├── SkinnedBlock.java │ │ │ │ ├── SystemTextBase.java │ │ │ │ ├── SystemTextLine.java │ │ │ │ ├── Text.java │ │ │ │ ├── TextureFilm.java │ │ │ │ ├── Tilemap.java │ │ │ │ ├── TouchArea.java │ │ │ │ ├── Visual.java │ │ │ │ ├── particles │ │ │ │ │ ├── DummyEmitter.java │ │ │ │ │ ├── Emitter.java │ │ │ │ │ └── PixelParticle.java │ │ │ │ ├── tweeners │ │ │ │ │ ├── AlphaTweener.java │ │ │ │ │ ├── FallTweener.java │ │ │ │ │ ├── JumpTweener.java │ │ │ │ │ ├── PosTweener.java │ │ │ │ │ ├── ScaleTweener.java │ │ │ │ │ └── Tweener.java │ │ │ │ └── ui │ │ │ │ │ ├── Button.java │ │ │ │ │ └── Component.java │ │ │ │ ├── pixeldungeon │ │ │ │ ├── Assets.java │ │ │ │ ├── Badges.java │ │ │ │ ├── Bones.java │ │ │ │ ├── Challenges.java │ │ │ │ ├── Chrome.java │ │ │ │ ├── ClassicDungeonTilemap.java │ │ │ │ ├── CustomLayerTilemap.java │ │ │ │ ├── Dungeon.java │ │ │ │ ├── DungeonTilemap.java │ │ │ │ ├── Facilitations.java │ │ │ │ ├── FogOfWar.java │ │ │ │ ├── GamesInProgress.java │ │ │ │ ├── Journal.java │ │ │ │ ├── Logbook.java │ │ │ │ ├── Rankings.java │ │ │ │ ├── ResultDescriptions.java │ │ │ │ ├── Statistics.java │ │ │ │ ├── VariativeDungeonTilemap.java │ │ │ │ ├── XyzDungeonTilemap.java │ │ │ │ ├── actors │ │ │ │ │ ├── Actor.java │ │ │ │ │ ├── Char.java │ │ │ │ │ ├── CharUtils.java │ │ │ │ │ ├── DelayedMobSpawner.java │ │ │ │ │ ├── DummyChar.java │ │ │ │ │ ├── DummyHero.java │ │ │ │ │ ├── NoAction.java │ │ │ │ │ ├── RespawnerActor.java │ │ │ │ │ ├── blobs │ │ │ │ │ │ ├── Alchemy.java │ │ │ │ │ │ ├── Blob.java │ │ │ │ │ │ ├── ConfusionGas.java │ │ │ │ │ │ ├── Darkness.java │ │ │ │ │ │ ├── Fire.java │ │ │ │ │ │ ├── Foliage.java │ │ │ │ │ │ ├── Freezing.java │ │ │ │ │ │ ├── LiquidFlame.java │ │ │ │ │ │ ├── ParalyticGas.java │ │ │ │ │ │ ├── Regrowth.java │ │ │ │ │ │ ├── ToxicGas.java │ │ │ │ │ │ ├── WaterOfAwareness.java │ │ │ │ │ │ ├── WaterOfHealth.java │ │ │ │ │ │ ├── WaterOfTransmutation.java │ │ │ │ │ │ ├── Web.java │ │ │ │ │ │ └── WellWater.java │ │ │ │ │ ├── buffs │ │ │ │ │ │ ├── Amok.java │ │ │ │ │ │ ├── Awareness.java │ │ │ │ │ │ ├── Barkskin.java │ │ │ │ │ │ ├── Bleeding.java │ │ │ │ │ │ ├── Blessed.java │ │ │ │ │ │ ├── Blindness.java │ │ │ │ │ │ ├── Buff.java │ │ │ │ │ │ ├── BuffCallback.java │ │ │ │ │ │ ├── Burning.java │ │ │ │ │ │ ├── CandleOfMindVisionBuff.java │ │ │ │ │ │ ├── CharModifier.java │ │ │ │ │ │ ├── Charm.java │ │ │ │ │ │ ├── Combo.java │ │ │ │ │ │ ├── Cripple.java │ │ │ │ │ │ ├── DummyBuff.java │ │ │ │ │ │ ├── FlavourBuff.java │ │ │ │ │ │ ├── Frost.java │ │ │ │ │ │ ├── Fury.java │ │ │ │ │ │ ├── Hunger.java │ │ │ │ │ │ ├── Invisibility.java │ │ │ │ │ │ ├── ItemAction.java │ │ │ │ │ │ ├── Levitation.java │ │ │ │ │ │ ├── Light.java │ │ │ │ │ │ ├── ManaRegeneration.java │ │ │ │ │ │ ├── MindVision.java │ │ │ │ │ │ ├── Ooze.java │ │ │ │ │ │ ├── Paralysis.java │ │ │ │ │ │ ├── Poison.java │ │ │ │ │ │ ├── Regeneration.java │ │ │ │ │ │ ├── Roots.java │ │ │ │ │ │ ├── Shadows.java │ │ │ │ │ │ ├── Sleep.java │ │ │ │ │ │ ├── Slow.java │ │ │ │ │ │ ├── SnipersMark.java │ │ │ │ │ │ ├── Speed.java │ │ │ │ │ │ ├── Stun.java │ │ │ │ │ │ ├── Terror.java │ │ │ │ │ │ ├── Vertigo.java │ │ │ │ │ │ └── Weakness.java │ │ │ │ │ ├── hero │ │ │ │ │ │ ├── Backpack.java │ │ │ │ │ │ ├── Belongings.java │ │ │ │ │ │ ├── Doom.java │ │ │ │ │ │ ├── Hero.java │ │ │ │ │ │ ├── HeroClass.java │ │ │ │ │ │ └── HeroSubClass.java │ │ │ │ │ └── mobs │ │ │ │ │ │ ├── Acidic.java │ │ │ │ │ │ ├── Albino.java │ │ │ │ │ │ ├── Bandit.java │ │ │ │ │ │ ├── Bat.java │ │ │ │ │ │ ├── Bestiary.java │ │ │ │ │ │ ├── Boss.java │ │ │ │ │ │ ├── Brute.java │ │ │ │ │ │ ├── Crab.java │ │ │ │ │ │ ├── DM300.java │ │ │ │ │ │ ├── Eye.java │ │ │ │ │ │ ├── FireElemental.java │ │ │ │ │ │ ├── Fraction.java │ │ │ │ │ │ ├── Gnoll.java │ │ │ │ │ │ ├── Golem.java │ │ │ │ │ │ ├── Goo.java │ │ │ │ │ │ ├── King.java │ │ │ │ │ │ ├── Mimic.java │ │ │ │ │ │ ├── MimicPie.java │ │ │ │ │ │ ├── Mob.java │ │ │ │ │ │ ├── Monk.java │ │ │ │ │ │ ├── Piranha.java │ │ │ │ │ │ ├── Rat.java │ │ │ │ │ │ ├── Scorpio.java │ │ │ │ │ │ ├── Senior.java │ │ │ │ │ │ ├── Shadow.java │ │ │ │ │ │ ├── Shaman.java │ │ │ │ │ │ ├── Shielded.java │ │ │ │ │ │ ├── Skeleton.java │ │ │ │ │ │ ├── Spinner.java │ │ │ │ │ │ ├── Statue.java │ │ │ │ │ │ ├── Succubus.java │ │ │ │ │ │ ├── Swarm.java │ │ │ │ │ │ ├── Tengu.java │ │ │ │ │ │ ├── Thief.java │ │ │ │ │ │ ├── WalkingType.java │ │ │ │ │ │ ├── Warlock.java │ │ │ │ │ │ ├── Wraith.java │ │ │ │ │ │ └── npcs │ │ │ │ │ │ ├── Blacksmith.java │ │ │ │ │ │ ├── Ghost.java │ │ │ │ │ │ ├── Hedgehog.java │ │ │ │ │ │ ├── Imp.java │ │ │ │ │ │ ├── ImpShopkeeper.java │ │ │ │ │ │ ├── MirrorImage.java │ │ │ │ │ │ ├── NPC.java │ │ │ │ │ │ ├── RatKing.java │ │ │ │ │ │ ├── Shopkeeper.java │ │ │ │ │ │ └── WandMaker.java │ │ │ │ ├── effects │ │ │ │ │ ├── BadgeBanner.java │ │ │ │ │ ├── BannerSprites.java │ │ │ │ │ ├── BlobEmitter.java │ │ │ │ │ ├── CellEmitter.java │ │ │ │ │ ├── CheckedCell.java │ │ │ │ │ ├── CircleMask.java │ │ │ │ │ ├── DeathRay.java │ │ │ │ │ ├── Effects.java │ │ │ │ │ ├── EmoIcon.java │ │ │ │ │ ├── Flare.java │ │ │ │ │ ├── FloatingText.java │ │ │ │ │ ├── Halo.java │ │ │ │ │ ├── HighlightCell.java │ │ │ │ │ ├── IceBlock.java │ │ │ │ │ ├── Identification.java │ │ │ │ │ ├── KusarigamaChain.java │ │ │ │ │ ├── Lightning.java │ │ │ │ │ ├── MagicMissile.java │ │ │ │ │ ├── Pushing.java │ │ │ │ │ ├── Ripple.java │ │ │ │ │ ├── Speck.java │ │ │ │ │ ├── SpellSprite.java │ │ │ │ │ ├── Splash.java │ │ │ │ │ ├── SystemFloatingText.java │ │ │ │ │ ├── TorchHalo.java │ │ │ │ │ ├── Wound.java │ │ │ │ │ └── particles │ │ │ │ │ │ ├── BloodParticle.java │ │ │ │ │ │ ├── DarknessParticle.java │ │ │ │ │ │ ├── EarthParticle.java │ │ │ │ │ │ ├── ElmoParticle.java │ │ │ │ │ │ ├── EnergyParticle.java │ │ │ │ │ │ ├── FlameParticle.java │ │ │ │ │ │ ├── FlowParticle.java │ │ │ │ │ │ ├── LeafParticle.java │ │ │ │ │ │ ├── PoisonParticle.java │ │ │ │ │ │ ├── PurpleParticle.java │ │ │ │ │ │ ├── ShadowParticle.java │ │ │ │ │ │ ├── ShaftParticle.java │ │ │ │ │ │ ├── SnowParticle.java │ │ │ │ │ │ ├── SparkParticle.java │ │ │ │ │ │ ├── WebParticle.java │ │ │ │ │ │ ├── WindParticle.java │ │ │ │ │ │ └── WoolParticle.java │ │ │ │ ├── items │ │ │ │ │ ├── Amulet.java │ │ │ │ │ ├── Ankh.java │ │ │ │ │ ├── ArmorKit.java │ │ │ │ │ ├── Codex.java │ │ │ │ │ ├── DewVial.java │ │ │ │ │ ├── Dewdrop.java │ │ │ │ │ ├── EquipableItem.java │ │ │ │ │ ├── Gold.java │ │ │ │ │ ├── Heap.java │ │ │ │ │ ├── Item.java │ │ │ │ │ ├── ItemSpritesDescription.java │ │ │ │ │ ├── ItemStatusHandler.java │ │ │ │ │ ├── KindOfWeapon.java │ │ │ │ │ ├── LloydsBeacon.java │ │ │ │ │ ├── PseudoItem.java │ │ │ │ │ ├── SpiderCharm.java │ │ │ │ │ ├── Stylus.java │ │ │ │ │ ├── Thrower.java │ │ │ │ │ ├── TomeOfMastery.java │ │ │ │ │ ├── Torch.java │ │ │ │ │ ├── Weightstone.java │ │ │ │ │ ├── armor │ │ │ │ │ │ ├── Armor.java │ │ │ │ │ │ ├── AssasinArmor.java │ │ │ │ │ │ ├── BattleMageArmor.java │ │ │ │ │ │ ├── BerserkArmor.java │ │ │ │ │ │ ├── ClassArmor.java │ │ │ │ │ │ ├── ClothArmor.java │ │ │ │ │ │ ├── ElfArmor.java │ │ │ │ │ │ ├── FreeRunnerArmor.java │ │ │ │ │ │ ├── GladiatorArmor.java │ │ │ │ │ │ ├── GnollArmor.java │ │ │ │ │ │ ├── GuardianArmor.java │ │ │ │ │ │ ├── HuntressArmor.java │ │ │ │ │ │ ├── LeatherArmor.java │ │ │ │ │ │ ├── MageArmor.java │ │ │ │ │ │ ├── MailArmor.java │ │ │ │ │ │ ├── PlateArmor.java │ │ │ │ │ │ ├── RogueArmor.java │ │ │ │ │ │ ├── ScaleArmor.java │ │ │ │ │ │ ├── ScoutArmor.java │ │ │ │ │ │ ├── ShamanArmor.java │ │ │ │ │ │ ├── SniperArmor.java │ │ │ │ │ │ ├── TeleportCellListener.java │ │ │ │ │ │ ├── WardenArmor.java │ │ │ │ │ │ ├── WarlockArmor.java │ │ │ │ │ │ ├── WarriorArmor.java │ │ │ │ │ │ ├── WitchdoctorArmor.java │ │ │ │ │ │ └── glyphs │ │ │ │ │ │ │ ├── Affection.java │ │ │ │ │ │ │ ├── AntiEntropy.java │ │ │ │ │ │ │ ├── Bounce.java │ │ │ │ │ │ │ ├── Displacement.java │ │ │ │ │ │ │ ├── Entanglement.java │ │ │ │ │ │ │ ├── Metabolism.java │ │ │ │ │ │ │ ├── Multiplicity.java │ │ │ │ │ │ │ ├── Potential.java │ │ │ │ │ │ │ ├── Stench.java │ │ │ │ │ │ │ └── Viscosity.java │ │ │ │ │ ├── bags │ │ │ │ │ │ ├── Bag.java │ │ │ │ │ │ ├── Keyring.java │ │ │ │ │ │ ├── PotionBelt.java │ │ │ │ │ │ ├── Quiver.java │ │ │ │ │ │ ├── ScrollHolder.java │ │ │ │ │ │ ├── SeedPouch.java │ │ │ │ │ │ └── WandHolster.java │ │ │ │ │ ├── food │ │ │ │ │ │ ├── ChargrilledMeat.java │ │ │ │ │ │ ├── Food.java │ │ │ │ │ │ ├── FrozenCarpaccio.java │ │ │ │ │ │ ├── MysteryMeat.java │ │ │ │ │ │ ├── OverpricedRation.java │ │ │ │ │ │ ├── Pasty.java │ │ │ │ │ │ ├── PseudoPasty.java │ │ │ │ │ │ ├── Ration.java │ │ │ │ │ │ ├── RottenFood.java │ │ │ │ │ │ ├── RottenMeat.java │ │ │ │ │ │ ├── RottenPasty.java │ │ │ │ │ │ └── RottenRation.java │ │ │ │ │ ├── keys │ │ │ │ │ │ ├── GoldenKey.java │ │ │ │ │ │ ├── IronKey.java │ │ │ │ │ │ ├── Key.java │ │ │ │ │ │ └── SkeletonKey.java │ │ │ │ │ ├── potions │ │ │ │ │ │ ├── Potion.java │ │ │ │ │ │ ├── PotionOfExperience.java │ │ │ │ │ │ ├── PotionOfFrost.java │ │ │ │ │ │ ├── PotionOfHealing.java │ │ │ │ │ │ ├── PotionOfInvisibility.java │ │ │ │ │ │ ├── PotionOfLevitation.java │ │ │ │ │ │ ├── PotionOfLiquidFlame.java │ │ │ │ │ │ ├── PotionOfMana.java │ │ │ │ │ │ ├── PotionOfMight.java │ │ │ │ │ │ ├── PotionOfMindVision.java │ │ │ │ │ │ ├── PotionOfParalyticGas.java │ │ │ │ │ │ ├── PotionOfPurity.java │ │ │ │ │ │ ├── PotionOfStrength.java │ │ │ │ │ │ ├── PotionOfToxicGas.java │ │ │ │ │ │ └── UpgradablePotion.java │ │ │ │ │ ├── quest │ │ │ │ │ │ ├── CorpseDust.java │ │ │ │ │ │ ├── DarkGold.java │ │ │ │ │ │ ├── DriedRose.java │ │ │ │ │ │ ├── DwarfToken.java │ │ │ │ │ │ ├── Pickaxe.java │ │ │ │ │ │ └── RatSkull.java │ │ │ │ │ ├── rings │ │ │ │ │ │ ├── Artifact.java │ │ │ │ │ │ ├── ArtifactBuff.java │ │ │ │ │ │ ├── Ring.java │ │ │ │ │ │ ├── RingOfAccuracy.java │ │ │ │ │ │ ├── RingOfDetection.java │ │ │ │ │ │ ├── RingOfElements.java │ │ │ │ │ │ ├── RingOfEvasion.java │ │ │ │ │ │ ├── RingOfHaggler.java │ │ │ │ │ │ ├── RingOfHaste.java │ │ │ │ │ │ ├── RingOfHerbalism.java │ │ │ │ │ │ ├── RingOfMending.java │ │ │ │ │ │ ├── RingOfPower.java │ │ │ │ │ │ ├── RingOfSatiety.java │ │ │ │ │ │ ├── RingOfShadows.java │ │ │ │ │ │ ├── RingOfStoneWalking.java │ │ │ │ │ │ ├── RingOfThorns.java │ │ │ │ │ │ └── UsableArtifact.java │ │ │ │ │ ├── scrolls │ │ │ │ │ │ ├── BlankScroll.java │ │ │ │ │ │ ├── InventoryScroll.java │ │ │ │ │ │ ├── Scroll.java │ │ │ │ │ │ ├── ScrollOfChallenge.java │ │ │ │ │ │ ├── ScrollOfCurse.java │ │ │ │ │ │ ├── ScrollOfDomination.java │ │ │ │ │ │ ├── ScrollOfIdentify.java │ │ │ │ │ │ ├── ScrollOfLullaby.java │ │ │ │ │ │ ├── ScrollOfMagicMapping.java │ │ │ │ │ │ ├── ScrollOfMirrorImage.java │ │ │ │ │ │ ├── ScrollOfPsionicBlast.java │ │ │ │ │ │ ├── ScrollOfRecharging.java │ │ │ │ │ │ ├── ScrollOfRemoveCurse.java │ │ │ │ │ │ ├── ScrollOfSummoning.java │ │ │ │ │ │ ├── ScrollOfTeleportation.java │ │ │ │ │ │ ├── ScrollOfTerror.java │ │ │ │ │ │ ├── ScrollOfUpgrade.java │ │ │ │ │ │ ├── ScrollOfWeaponUpgrade.java │ │ │ │ │ │ └── ScrollUse.java │ │ │ │ │ ├── wands │ │ │ │ │ │ ├── SimpleWand.java │ │ │ │ │ │ ├── Wand.java │ │ │ │ │ │ ├── WandOfAmok.java │ │ │ │ │ │ ├── WandOfAvalanche.java │ │ │ │ │ │ ├── WandOfBlink.java │ │ │ │ │ │ ├── WandOfDisintegration.java │ │ │ │ │ │ ├── WandOfFirebolt.java │ │ │ │ │ │ ├── WandOfFlock.java │ │ │ │ │ │ ├── WandOfLightning.java │ │ │ │ │ │ ├── WandOfMagicMissile.java │ │ │ │ │ │ ├── WandOfPoison.java │ │ │ │ │ │ ├── WandOfRegrowth.java │ │ │ │ │ │ ├── WandOfSlowness.java │ │ │ │ │ │ ├── WandOfTelekinesis.java │ │ │ │ │ │ ├── WandOfTeleportation.java │ │ │ │ │ │ └── Zapper.java │ │ │ │ │ └── weapon │ │ │ │ │ │ ├── Weapon.java │ │ │ │ │ │ ├── enchantments │ │ │ │ │ │ ├── Death.java │ │ │ │ │ │ ├── Fire.java │ │ │ │ │ │ ├── Horror.java │ │ │ │ │ │ ├── Instability.java │ │ │ │ │ │ ├── Leech.java │ │ │ │ │ │ ├── Luck.java │ │ │ │ │ │ ├── Paralysis.java │ │ │ │ │ │ ├── Piercing.java │ │ │ │ │ │ ├── Poison.java │ │ │ │ │ │ ├── Slow.java │ │ │ │ │ │ └── Swing.java │ │ │ │ │ │ ├── melee │ │ │ │ │ │ ├── BattleAxe.java │ │ │ │ │ │ ├── CompoundBow.java │ │ │ │ │ │ ├── Dagger.java │ │ │ │ │ │ ├── Glaive.java │ │ │ │ │ │ ├── KindOfBow.java │ │ │ │ │ │ ├── Knuckles.java │ │ │ │ │ │ ├── Kusarigama.java │ │ │ │ │ │ ├── Longsword.java │ │ │ │ │ │ ├── Mace.java │ │ │ │ │ │ ├── MeleeWeapon.java │ │ │ │ │ │ ├── Polearm.java │ │ │ │ │ │ ├── Quarterstaff.java │ │ │ │ │ │ ├── RubyBow.java │ │ │ │ │ │ ├── ShortSword.java │ │ │ │ │ │ ├── Spear.java │ │ │ │ │ │ ├── Sword.java │ │ │ │ │ │ ├── WarHammer.java │ │ │ │ │ │ └── WoodenBow.java │ │ │ │ │ │ └── missiles │ │ │ │ │ │ ├── AmokArrow.java │ │ │ │ │ │ ├── AmokDart.java │ │ │ │ │ │ ├── Arrow.java │ │ │ │ │ │ ├── Boomerang.java │ │ │ │ │ │ ├── CommonArrow.java │ │ │ │ │ │ ├── CurareDart.java │ │ │ │ │ │ ├── Dart.java │ │ │ │ │ │ ├── FireArrow.java │ │ │ │ │ │ ├── FrostArrow.java │ │ │ │ │ │ ├── HealthArrow.java │ │ │ │ │ │ ├── HealthDart.java │ │ │ │ │ │ ├── IncendiaryDart.java │ │ │ │ │ │ ├── Javelin.java │ │ │ │ │ │ ├── MissileWeapon.java │ │ │ │ │ │ ├── ParalysisArrow.java │ │ │ │ │ │ ├── PoisonArrow.java │ │ │ │ │ │ ├── Shuriken.java │ │ │ │ │ │ └── Tamahawk.java │ │ │ │ ├── levels │ │ │ │ │ ├── BossLevel.java │ │ │ │ │ ├── CavesBossLevel.java │ │ │ │ │ ├── CavesLevel.java │ │ │ │ │ ├── CityBossLevel.java │ │ │ │ │ ├── CityLevel.java │ │ │ │ │ ├── CommonLevel.java │ │ │ │ │ ├── DeadEndLevel.java │ │ │ │ │ ├── HallsBossLevel.java │ │ │ │ │ ├── HallsLevel.java │ │ │ │ │ ├── LastLevel.java │ │ │ │ │ ├── LastShopLevel.java │ │ │ │ │ ├── Level.java │ │ │ │ │ ├── Patch.java │ │ │ │ │ ├── PrisonBossLevel.java │ │ │ │ │ ├── PrisonLevel.java │ │ │ │ │ ├── RandomDestinationForAutoTest.java │ │ │ │ │ ├── RegularLevel.java │ │ │ │ │ ├── Room.java │ │ │ │ │ ├── SewerBossLevel.java │ │ │ │ │ ├── SewerLevel.java │ │ │ │ │ ├── Terrain.java │ │ │ │ │ ├── TerrainFlags.java │ │ │ │ │ ├── features │ │ │ │ │ │ ├── AlchemyPot.java │ │ │ │ │ │ ├── Chasm.java │ │ │ │ │ │ ├── Door.java │ │ │ │ │ │ ├── HighGrass.java │ │ │ │ │ │ └── WndChasmJump.java │ │ │ │ │ ├── painters │ │ │ │ │ │ ├── ArmoryPainter.java │ │ │ │ │ │ ├── BlacksmithPainter.java │ │ │ │ │ │ ├── CryptPainter.java │ │ │ │ │ │ ├── EntrancePainter.java │ │ │ │ │ │ ├── ExitPainter.java │ │ │ │ │ │ ├── GardenPainter.java │ │ │ │ │ │ ├── LaboratoryPainter.java │ │ │ │ │ │ ├── LibraryPainter.java │ │ │ │ │ │ ├── MagicWellPainter.java │ │ │ │ │ │ ├── NecroExitPainter.java │ │ │ │ │ │ ├── Painter.java │ │ │ │ │ │ ├── PassagePainter.java │ │ │ │ │ │ ├── PitPainter.java │ │ │ │ │ │ ├── PoolPainter.java │ │ │ │ │ │ ├── PrisonBossExitPainter.java │ │ │ │ │ │ ├── RatKingPainter.java │ │ │ │ │ │ ├── SewerBossExitPainter.java │ │ │ │ │ │ ├── ShopPainter.java │ │ │ │ │ │ ├── StandardPainter.java │ │ │ │ │ │ ├── StatuePainter.java │ │ │ │ │ │ ├── StoragePainter.java │ │ │ │ │ │ ├── TrapsPainter.java │ │ │ │ │ │ ├── TreasuryPainter.java │ │ │ │ │ │ ├── TunnelPainter.java │ │ │ │ │ │ ├── VaultPainter.java │ │ │ │ │ │ ├── WarehousePainter.java │ │ │ │ │ │ └── WeakFloorPainter.java │ │ │ │ │ └── traps │ │ │ │ │ │ ├── AlarmTrap.java │ │ │ │ │ │ ├── FireTrap.java │ │ │ │ │ │ ├── GrippingTrap.java │ │ │ │ │ │ ├── LightningTrap.java │ │ │ │ │ │ ├── ParalyticTrap.java │ │ │ │ │ │ ├── PoisonTrap.java │ │ │ │ │ │ ├── SummoningTrap.java │ │ │ │ │ │ ├── ToxicTrap.java │ │ │ │ │ │ ├── TrapHelper.java │ │ │ │ │ │ └── WndStepOnTrap.java │ │ │ │ ├── mechanics │ │ │ │ │ ├── Ballistica.java │ │ │ │ │ └── ShadowCaster.java │ │ │ │ ├── plants │ │ │ │ │ ├── Dreamweed.java │ │ │ │ │ ├── Earthroot.java │ │ │ │ │ ├── Fadeleaf.java │ │ │ │ │ ├── Firebloom.java │ │ │ │ │ ├── Icecap.java │ │ │ │ │ ├── Moongrace.java │ │ │ │ │ ├── Plant.java │ │ │ │ │ ├── Seed.java │ │ │ │ │ ├── Sorrowmoss.java │ │ │ │ │ └── Sungrass.java │ │ │ │ ├── scenes │ │ │ │ │ ├── AboutScene.java │ │ │ │ │ ├── AllowStatisticsCollectionScene.java │ │ │ │ │ ├── AmuletScene.java │ │ │ │ │ ├── BadgesScene.java │ │ │ │ │ ├── CellSelector.java │ │ │ │ │ ├── CellSelectorToast.java │ │ │ │ │ ├── DefaultCellListener.java │ │ │ │ │ ├── GameScene.java │ │ │ │ │ ├── InterlevelScene.java │ │ │ │ │ ├── IntroScene.java │ │ │ │ │ ├── PixelCamera.java │ │ │ │ │ ├── PixelScene.java │ │ │ │ │ ├── RankingsScene.java │ │ │ │ │ ├── StartScene.java │ │ │ │ │ ├── SurfaceScene.java │ │ │ │ │ ├── TitleScene.java │ │ │ │ │ └── WelcomeScene.java │ │ │ │ ├── sprites │ │ │ │ │ ├── CharSprite.java │ │ │ │ │ ├── DiscardedItemSprite.java │ │ │ │ │ ├── DummySprite.java │ │ │ │ │ ├── Glowing.java │ │ │ │ │ ├── HeroSpriteDef.java │ │ │ │ │ ├── ItemSprite.java │ │ │ │ │ ├── ItemSpriteSheet.java │ │ │ │ │ ├── ManaShield.java │ │ │ │ │ ├── MissileSprite.java │ │ │ │ │ ├── MobSprite.java │ │ │ │ │ ├── MobSpriteDef.java │ │ │ │ │ ├── ModernHeroSpriteDef.java │ │ │ │ │ └── RetroHeroSpriteDef.java │ │ │ │ ├── ui │ │ │ │ │ ├── Archs.java │ │ │ │ │ ├── AttackIndicator.java │ │ │ │ │ ├── BadgesList.java │ │ │ │ │ ├── Banner.java │ │ │ │ │ ├── BuffIndicator.java │ │ │ │ │ ├── BusyIndicator.java │ │ │ │ │ ├── CatalogusListItem.java │ │ │ │ │ ├── ChallengeButton.java │ │ │ │ │ ├── ChangelogButton.java │ │ │ │ │ ├── CheckBox.java │ │ │ │ │ ├── ClassShield.java │ │ │ │ │ ├── Compass.java │ │ │ │ │ ├── DangerIndicator.java │ │ │ │ │ ├── DashboardItem.java │ │ │ │ │ ├── DonateButton.java │ │ │ │ │ ├── ExitButton.java │ │ │ │ │ ├── FacilitaionButton.java │ │ │ │ │ ├── GameButton.java │ │ │ │ │ ├── GameLog.java │ │ │ │ │ ├── GoldIndicator.java │ │ │ │ │ ├── HealthIndicator.java │ │ │ │ │ ├── IClickable.java │ │ │ │ │ ├── IWindow.java │ │ │ │ │ ├── IconButton.java │ │ │ │ │ ├── Icons.java │ │ │ │ │ ├── ImageButton.java │ │ │ │ │ ├── ImageTextButton.java │ │ │ │ │ ├── InformerCellListener.java │ │ │ │ │ ├── InventoryTool.java │ │ │ │ │ ├── ItemSlot.java │ │ │ │ │ ├── ListItem.java │ │ │ │ │ ├── LootIndicator.java │ │ │ │ │ ├── MenuButton.java │ │ │ │ │ ├── ModsButton.java │ │ │ │ │ ├── PickedUpItem.java │ │ │ │ │ ├── PlayGamesButton.java │ │ │ │ │ ├── PrefsButton.java │ │ │ │ │ ├── PremiumPrefsButton.java │ │ │ │ │ ├── QuickSlot.java │ │ │ │ │ ├── QuickslotTool.java │ │ │ │ │ ├── RedButton.java │ │ │ │ │ ├── ResumeIndicator.java │ │ │ │ │ ├── ScrollPane.java │ │ │ │ │ ├── SimpleButton.java │ │ │ │ │ ├── Slider.java │ │ │ │ │ ├── StatisticsButton.java │ │ │ │ │ ├── StatusPane.java │ │ │ │ │ ├── SystemRedButton.java │ │ │ │ │ ├── Tag.java │ │ │ │ │ ├── TextButton.java │ │ │ │ │ ├── Toast.java │ │ │ │ │ ├── Toolbar.java │ │ │ │ │ ├── Window.java │ │ │ │ │ └── WndPlayGames.java │ │ │ │ ├── utils │ │ │ │ │ ├── BArray.java │ │ │ │ │ ├── GLog.java │ │ │ │ │ └── Utils.java │ │ │ │ └── windows │ │ │ │ │ ├── BagTab.java │ │ │ │ │ ├── BuffsTab.java │ │ │ │ │ ├── CharDescTab.java │ │ │ │ │ ├── IconTitle.java │ │ │ │ │ ├── ItemButton.java │ │ │ │ │ ├── ItemPlaceholder.java │ │ │ │ │ ├── Selector.java │ │ │ │ │ ├── StatsTab.java │ │ │ │ │ ├── WndBadge.java │ │ │ │ │ ├── WndBag.java │ │ │ │ │ ├── WndBlacksmith.java │ │ │ │ │ ├── WndCatalogus.java │ │ │ │ │ ├── WndChar.java │ │ │ │ │ ├── WndChooseWay.java │ │ │ │ │ ├── WndClass.java │ │ │ │ │ ├── WndCryptoDonate.java │ │ │ │ │ ├── WndDonate.java │ │ │ │ │ ├── WndDontLikeAds.java │ │ │ │ │ ├── WndError.java │ │ │ │ │ ├── WndHatInfo.java │ │ │ │ │ ├── WndHats.java │ │ │ │ │ ├── WndImp.java │ │ │ │ │ ├── WndInGameMenu.java │ │ │ │ │ ├── WndInfoCell.java │ │ │ │ │ ├── WndInfoItem.java │ │ │ │ │ ├── WndItem.java │ │ │ │ │ ├── WndJournal.java │ │ │ │ │ ├── WndMenuCommon.java │ │ │ │ │ ├── WndMessage.java │ │ │ │ │ ├── WndModDescription.java │ │ │ │ │ ├── WndModInfo.java │ │ │ │ │ ├── WndModInstall.java │ │ │ │ │ ├── WndModSelect.java │ │ │ │ │ ├── WndOptions.java │ │ │ │ │ ├── WndPremiumSettings.java │ │ │ │ │ ├── WndQuest.java │ │ │ │ │ ├── WndRanking.java │ │ │ │ │ ├── WndResurrect.java │ │ │ │ │ ├── WndSadGhost.java │ │ │ │ │ ├── WndSaveSlotSelect.java │ │ │ │ │ ├── WndSelectLanguage.java │ │ │ │ │ ├── WndSettings.java │ │ │ │ │ ├── WndSettingsInGame.java │ │ │ │ │ ├── WndStory.java │ │ │ │ │ ├── WndTabbed.java │ │ │ │ │ ├── WndTitledMessage.java │ │ │ │ │ ├── WndTradeItem.java │ │ │ │ │ ├── WndWandmaker.java │ │ │ │ │ └── elements │ │ │ │ │ ├── CharTitle.java │ │ │ │ │ ├── GenericInfo.java │ │ │ │ │ ├── LabeledTab.java │ │ │ │ │ ├── RankingTab.java │ │ │ │ │ ├── Tab.java │ │ │ │ │ ├── TabContent.java │ │ │ │ │ └── Tool.java │ │ │ │ └── utils │ │ │ │ ├── Bundlable.java │ │ │ │ ├── Bundle.java │ │ │ │ ├── Callback.java │ │ │ │ ├── ColorMath.java │ │ │ │ ├── GameMath.java │ │ │ │ ├── Graph.java │ │ │ │ ├── PathFinder.java │ │ │ │ ├── Point.java │ │ │ │ ├── PointF.java │ │ │ │ ├── Random.java │ │ │ │ ├── Rect.java │ │ │ │ ├── Signal.java │ │ │ │ └── SystemTime.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ └── notification_ic.png │ │ │ ├── values-de │ │ │ └── strings_all.xml │ │ │ ├── values-el │ │ │ └── strings_all.xml │ │ │ ├── values-es │ │ │ ├── strings_all.xml │ │ │ └── strings_not_translate.xml │ │ │ ├── values-fr │ │ │ ├── strings_all.xml │ │ │ └── strings_not_translate.xml │ │ │ ├── values-hu │ │ │ └── strings_all.xml │ │ │ ├── values-in │ │ │ └── strings_all.xml │ │ │ ├── values-it │ │ │ └── strings_all.xml │ │ │ ├── values-ja │ │ │ └── strings_all.xml │ │ │ ├── values-ko │ │ │ └── strings_all.xml │ │ │ ├── values-ms │ │ │ └── strings_all.xml │ │ │ ├── values-pl │ │ │ ├── strings_all.xml │ │ │ └── strings_not_translate.xml │ │ │ ├── values-pt-rBR │ │ │ ├── strings_all.xml │ │ │ └── strings_not_translate.xml │ │ │ ├── values-ru │ │ │ ├── strings_all.xml │ │ │ └── strings_not_translate.xml │ │ │ ├── values-tr │ │ │ └── strings_all.xml │ │ │ ├── values-uk │ │ │ ├── strings_all.xml │ │ │ └── strings_not_translate.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings_all.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings_all.xml │ │ │ ├── values │ │ │ ├── string_arrays.xml │ │ │ ├── strings_all.xml │ │ │ ├── strings_api_signature.xml │ │ │ ├── strings_not_translate.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── backup_descriptor.xml │ │ │ └── network_security_config.xml │ └── ruStore │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── nyrds │ │ ├── market │ │ ├── MarketApp.java │ │ └── MarketOptions.java │ │ ├── pixeldungeon │ │ └── support │ │ │ ├── AdsUtils.java │ │ │ ├── EuConsent.java │ │ │ ├── IapAdapter.java │ │ │ ├── PlayGamesAdapter.java │ │ │ ├── YandexBannerProvider.java │ │ │ ├── YandexInterstitialProvider.java │ │ │ ├── YandexRewardVideoAds.java │ │ │ └── di │ │ │ └── PaymentsModule.java │ │ └── platform │ │ ├── EventCollector.java │ │ └── RemoteConfig.java └── testKey │ └── test.jks ├── RemixedDungeonDesktop ├── .gitignore ├── build.gradle ├── make_json.py ├── make_r.py └── src │ ├── desktop │ ├── assets │ ├── d_assets │ │ ├── fonts │ │ │ └── LXGWWenKaiScreen.ttf │ │ └── icons │ │ │ └── icon.ico │ ├── java │ │ └── com │ │ │ └── nyrds │ │ │ └── pixeldungeon │ │ │ └── desktop │ │ │ ├── DesktopLauncher.java │ │ │ ├── DesktopQuickModTest.java │ │ │ ├── HeadlessTurnLimitedGame.java │ │ │ └── RunModForTurnsLauncher.java │ ├── l10ns │ │ ├── .gitkeep │ │ ├── strings_de.json │ │ ├── strings_el.json │ │ ├── strings_en.json │ │ ├── strings_es.json │ │ ├── strings_fr.json │ │ ├── strings_hu.json │ │ ├── strings_in.json │ │ ├── strings_it.json │ │ ├── strings_ja.json │ │ ├── strings_ko.json │ │ ├── strings_ms.json │ │ ├── strings_pl.json │ │ ├── strings_pt_BR.json │ │ ├── strings_ru.json │ │ ├── strings_tr.json │ │ ├── strings_uk.json │ │ ├── strings_zh_CN.json │ │ └── strings_zh_TW.json │ ├── run-mac.sh │ ├── run.bat │ ├── run.sh │ └── rundir │ │ ├── .gitkeep │ │ └── mods │ │ ├── .gitkeep │ │ └── TestLuaMod │ │ ├── levelsDesc │ │ ├── Dungeon.json │ │ └── ScriptsArena.json │ │ ├── scripts │ │ ├── items │ │ │ └── TestItemScript.lua │ │ ├── startup │ │ │ └── TestModStartup.lua │ │ └── traps │ │ │ └── TestTrapScript.lua │ │ └── version.json │ ├── generated │ └── java │ │ └── com │ │ └── nyrds │ │ └── pixeldungeon │ │ └── ml │ │ ├── .gitkeep │ │ └── BuildConfig.java │ ├── libgdx │ └── java │ │ ├── android │ │ ├── annotation │ │ │ └── SuppressLint.java │ │ └── view │ │ │ └── KeyEvent.java │ │ ├── androidx │ │ └── annotation │ │ │ └── Keep.java │ │ └── com │ │ ├── nyrds │ │ ├── pixeldungeon │ │ │ ├── ml │ │ │ │ └── R.java │ │ │ └── support │ │ │ │ ├── AdsUtils.java │ │ │ │ ├── IapAdapter.java │ │ │ │ └── PlayGames.java │ │ ├── platform │ │ │ ├── ConcurrencyProvider.java │ │ │ ├── EventCollector.java │ │ │ ├── app │ │ │ │ ├── Input.java │ │ │ │ ├── Notifications.java │ │ │ │ ├── RemixedDungeonApp.java │ │ │ │ ├── WebServer.java │ │ │ │ ├── WebServerApp.java │ │ │ │ └── WebServerOnlyGame.java │ │ │ ├── audio │ │ │ │ ├── MusicManager.java │ │ │ │ └── Sample.java │ │ │ ├── game │ │ │ │ ├── Game.java │ │ │ │ ├── InstallMod.java │ │ │ │ ├── PlayTest.java │ │ │ │ ├── QuickModTest.java │ │ │ │ └── RemixedDungeon.java │ │ │ ├── gfx │ │ │ │ ├── BitmapData.java │ │ │ │ ├── PseudoBatch.java │ │ │ │ ├── PseudoGlyphLayout.java │ │ │ │ ├── PseudoPixmapPacker.java │ │ │ │ ├── SystemText.java │ │ │ │ └── SystemTextPseudoBatch.java │ │ │ ├── gl │ │ │ │ ├── Attribute.java │ │ │ │ ├── Gl.java │ │ │ │ ├── MaskedTilemapScript.java │ │ │ │ ├── NoosaScript.java │ │ │ │ ├── Program.java │ │ │ │ ├── Shader.java │ │ │ │ ├── Texture.java │ │ │ │ └── Uniform.java │ │ │ ├── input │ │ │ │ ├── Keys.java │ │ │ │ ├── PointerEvent.java │ │ │ │ └── Touchscreen.java │ │ │ ├── lua │ │ │ │ └── PlatformLuajavaLib.java │ │ │ ├── network │ │ │ │ └── HttpConnectionFactory.java │ │ │ ├── storage │ │ │ │ ├── AndroidSAF.java │ │ │ │ ├── CaseInsensitiveFileCache.java │ │ │ │ ├── FileSystem.java │ │ │ │ ├── Preferences.java │ │ │ │ └── SaveUtils.java │ │ │ └── util │ │ │ │ ├── Crypter.java │ │ │ │ ├── Os.java │ │ │ │ ├── PUtil.java │ │ │ │ ├── StringsManager.java │ │ │ │ ├── TrackedRuntimeException.java │ │ │ │ └── UserKey.java │ │ └── util │ │ │ ├── ModdingMode.java │ │ │ └── ReportingExecutor.java │ │ └── watabou │ │ └── pixeldungeon │ │ └── scenes │ │ └── WebViewScene.java │ ├── market_none │ └── java │ │ └── com │ │ └── nyrds │ │ ├── market │ │ ├── MarketApp.java │ │ └── MarketOptions.java │ │ ├── pixeldungeon │ │ └── support │ │ │ └── PlayGamesAdapter.java │ │ └── platform │ │ └── support │ │ ├── Ads.java │ │ ├── AdsRewardVideo.java │ │ ├── IIapCallback.java │ │ └── Iap.java │ └── market_vkplay │ └── java │ └── com │ └── nyrds │ ├── market │ ├── MarketApp.java │ └── MarketOptions.java │ └── platform │ └── support │ ├── Ads.java │ ├── AdsRewardVideo.java │ ├── IIapCallback.java │ └── Iap.java ├── RemixedDungeonHtml ├── build.gradle ├── make_json.py ├── make_r.py └── src │ ├── html │ └── java │ │ ├── android │ │ ├── annotation │ │ │ └── SuppressLint.java │ │ └── view │ │ │ └── KeyEvent.java │ │ ├── androidx │ │ └── annotation │ │ │ └── Keep.java │ │ └── com │ │ └── nyrds │ │ ├── pixeldungeon │ │ ├── ml │ │ │ └── BuildConfig.java │ │ └── support │ │ │ └── AdsUtils.java │ │ ├── platform │ │ ├── ConcurrencyProvider.java │ │ ├── EventCollector.java │ │ ├── app │ │ │ ├── Notifications.java │ │ │ ├── RemixedDungeonApp.java │ │ │ └── client │ │ │ │ └── TeaVMLauncher.java │ │ ├── audio │ │ │ ├── MusicManager.java │ │ │ └── Sample.java │ │ ├── game │ │ │ ├── Game.java │ │ │ ├── InstallMod.java │ │ │ └── RemixedDungeon.java │ │ ├── gfx │ │ │ ├── BitmapData.java │ │ │ └── SystemText.java │ │ ├── gl │ │ │ ├── Attribute.java │ │ │ ├── Gl.java │ │ │ ├── MaskedTilemapScript.java │ │ │ ├── NoosaScript.java │ │ │ ├── Program.java │ │ │ ├── Shader.java │ │ │ ├── Texture.java │ │ │ └── Uniform.java │ │ ├── input │ │ │ ├── Keys.java │ │ │ ├── PointerEvent.java │ │ │ └── Touchscreen.java │ │ ├── lua │ │ │ └── PlatformLuajavaLib.java │ │ ├── network │ │ │ └── HttpConnectionFactory.java │ │ ├── storage │ │ │ ├── AndroidSAF.java │ │ │ ├── Assets.java │ │ │ ├── FileSystem.java │ │ │ ├── HtmlPreferences.java │ │ │ ├── Preferences.java │ │ │ └── SaveUtils.java │ │ └── util │ │ │ ├── Crypter.java │ │ │ ├── Os.java │ │ │ ├── PUtil.java │ │ │ ├── StringsManager.java │ │ │ ├── TrackedRuntimeException.java │ │ │ └── UserKey.java │ │ ├── teavm │ │ └── reflection │ │ │ └── ReflectionConfig.java │ │ └── util │ │ ├── ModdingMode.java │ │ └── ReportingExecutor.java │ ├── main │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.html │ └── market_none │ └── java │ └── com │ └── nyrds │ ├── pixeldungeon │ └── support │ │ └── PlayGames.java │ └── platform │ └── support │ ├── Ads.java │ ├── AdsRewardVideo.java │ ├── IIapCallback.java │ └── Iap.java ├── TiledMaps ├── Church.tmx ├── Cinema.tmx ├── Fortune.tmx ├── FortuneShop.tmx ├── Inn.tmx ├── Library.tmx ├── Png │ ├── Mobs.png │ ├── Objects.png │ ├── logic.png │ ├── tiles0.png │ ├── tiles_town_inside.png │ └── tiles_town_outside_winter.png ├── Portal.tmx ├── PortalShrine.tmx ├── ScriptsArena.tmx ├── Shop.tmx ├── TestMapCurch.tmx ├── Theater.tmx ├── Town(old).tmx ├── Town.tmx ├── TownChurch.tmx ├── TownLibrary.tmx ├── Town_desktop.tmx ├── Tutorial.tmx ├── tilesets │ ├── Mobs.tsx │ ├── Objects.tsx │ ├── logic.tsx │ ├── tiles_town_inside.tsx │ └── tiles_town_outside_winter.tsx └── vwArena.tmx ├── annotation ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── nyrds │ ├── LuaInterface.java │ └── Packable.java ├── bitrise.yml ├── docs ├── BitmapData.md ├── PLATFORM_MARKET_DIAGRAM.md ├── PLATFORM_MARKET_STRUCTURE.md ├── PLATFORM_OVERLAY_DIAGRAM.md ├── PLATFORM_OVERLAY_SYSTEM.md ├── SNAP_BUILD.md ├── UI_Composition_Principles.md ├── WIKI_DOCUMENTATION.md ├── WebServer.md ├── advanced_sprite_examples.md └── modding.md ├── extract_tengu_liver.py ├── generated_spell_wiki ├── backstab_spell.txt ├── body_armor_spell.txt ├── calm_spell.txt ├── charm_spell.txt ├── cloak_spell.txt ├── curse_item_spell.txt ├── dark_sacrifice_spell.txt ├── dash_spell.txt ├── die_hard_spell.txt ├── exhumation_spell.txt ├── freeze_globe_spell.txt ├── haste_spell.txt ├── heal_spell.txt ├── healing_spell.txt ├── hide_in_grass_spell.txt ├── ignite_spell.txt ├── kunai_throw_spell.txt ├── lightning_bolt_spell.txt ├── magic_arrow_spell.txt ├── magic_torch_spell.txt ├── nature_armor_spell.txt ├── order_spell.txt ├── possess_spell.txt ├── raise_dead_spell.txt ├── roar_spell.txt ├── root_spell.txt ├── shoot_in_eye_spell.txt ├── smash_spell.txt ├── sprout_spell.txt ├── summon_beast_spell.txt ├── test_spell.txt ├── town_portal_spell.txt └── wind_gust_spell.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hero layers └── Hero Layers.xcf ├── hero_previews ├── assassin.txt ├── battlemage.txt ├── berserker.txt ├── doctor.txt ├── elf.txt ├── freerunner.txt ├── gladiator.txt ├── gnoll.txt ├── guardian.txt ├── huntress.txt ├── lich.txt ├── mage.txt ├── necromancer.txt ├── priest.txt ├── rogue.txt ├── scout.txt ├── shaman.txt ├── sniper.txt ├── warden.txt ├── warlock.txt ├── warrior.txt └── witchdoctor.txt ├── json_clone ├── .gitignore ├── build.gradle └── src │ └── main │ └── java │ └── org │ └── json │ ├── JSONArray.java │ ├── JSONException.java │ ├── JSONObject.java │ ├── JSONPointer.java │ ├── JSONPointerException.java │ ├── JSONPropertyIgnore.java │ ├── JSONPropertyName.java │ ├── JSONString.java │ ├── JSONStringer.java │ ├── JSONTokener.java │ └── JSONWriter.java ├── modding └── MinimalModWithMap │ ├── levelsDesc │ ├── Dungeon.json │ └── ScriptsArena.json │ └── version.json ├── pick_random_wiki_pages.sh ├── platform.md ├── processor ├── .gitignore ├── build.gradle ├── settings.gradle └── src │ └── main │ └── java │ └── com │ └── nyrds │ └── PdAnnotationProcessor.java ├── settings.android.gradle ├── settings.desktop.gradle ├── settings.gradle ├── settings.html.gradle ├── snap ├── local │ ├── update_version.sh │ └── wrapper.sh └── snapcraft.yaml ├── tools ├── crush │ └── crush.sh ├── mods │ ├── mods2.json │ ├── mods_data.py │ └── packs ├── py-tools │ ├── README.md │ ├── categorize_unused.py │ ├── check_unused_images.py │ ├── extract_all_item_sprites.py │ ├── extract_custom_item_sprites.py │ ├── extract_item_sprites.py │ ├── extract_mob_sprites.py │ ├── find_red_links.py │ ├── find_unused_files.py │ ├── generate_hero_previews.py │ ├── generate_spell_images.py │ ├── generate_spell_wiki.py │ ├── remove_duplicate_files.py │ ├── rename_capitalized_files.py │ ├── search_wiki_duplicates.py │ ├── test_json_configs.py │ ├── test_lua_syntax.py │ ├── update_links.py │ ├── update_links_specific.py │ ├── wiki_page_rename.py │ ├── wiki_potential_links.py │ ├── wiki_potential_links_optimized.py │ └── wiki_redirects.py ├── sprites │ ├── dual_wield_frames.py │ ├── left_hand_fix.py │ ├── mobs_slice.py │ ├── shoulder_extractor.py │ ├── sprite_split.py │ └── to_modern.py └── tx │ ├── cn_sort.py │ ├── trapHelper.py │ └── tx2as.py ├── update_wiki.sh ├── validation_scripts_documentation.md ├── version.properties └── wiki_map.dot /.devin/wiki.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/.devin/wiki.json -------------------------------------------------------------------------------- /.github/workflows/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/.github/workflows/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/.gitmodules -------------------------------------------------------------------------------- /DEBUGGING_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/DEBUGGING_INSTRUCTIONS.md -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_1.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_2.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_3.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_4.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_5.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_6.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Boss_Lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Boss_Lich.png -------------------------------------------------------------------------------- /GameServices/Achievements/Achievement_Medical_Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/Achievements/Achievement_Medical_Mask.png -------------------------------------------------------------------------------- /GameServices/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/feature.png -------------------------------------------------------------------------------- /GameServices/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/icon.png -------------------------------------------------------------------------------- /GameServices/icon_216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/icon_216.png -------------------------------------------------------------------------------- /GameServices/texts-az/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-az/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-az/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-az/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-de/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-de/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-de/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-de/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-de_DE/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-de_DE/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-el/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-el/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-es/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-es/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-es/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-es/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-es_ES/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-es_ES/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-es_MX/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-es_MX/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-es_MX/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-es_MX/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-fil_PH/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-fil_PH/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-fr/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-fr/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-fr/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-fr/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-fr_FR/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-fr_FR/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-hu/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-hu/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-hu/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-hu/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-id/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-id/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-id/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-id/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-it/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-it/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-ko/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ko/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-ko/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ko/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-ms/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ms/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-ms/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ms/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-nl/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-nl/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-pl/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-pl/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-pl/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-pl/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-pl_PL/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-pl_PL/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-pt-rBR/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-pt-rBR/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-pt-rBR/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-pt-rBR/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-ro/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ro/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-ro/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ro/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-ru/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ru/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-ru/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ru/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-ru_RU/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-ru_RU/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-sr/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-sr/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-tr/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-tr/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-tr/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-tr/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-uk/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-uk/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-uk/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-uk/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-vi_VN/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-vi_VN/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-vi_VN/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-vi_VN/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-zh-Hans/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh-Hans/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-zh-Hans/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh-Hans/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-zh/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-zh/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-zh_CN/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh_CN/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-zh_CN/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh_CN/desc.txt -------------------------------------------------------------------------------- /GameServices/texts-zh_HK/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh_HK/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-zh_TW/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh_TW/badges.txt -------------------------------------------------------------------------------- /GameServices/texts-zh_TW/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts-zh_TW/desc.txt -------------------------------------------------------------------------------- /GameServices/texts/badges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts/badges.txt -------------------------------------------------------------------------------- /GameServices/texts/desc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/texts/desc.txt -------------------------------------------------------------------------------- /GameServices/title_1024x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/title_1024x500.png -------------------------------------------------------------------------------- /GameServices/title_1280x720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/title_1280x720.png -------------------------------------------------------------------------------- /GameServices/title_180x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/GameServices/title_180x120.png -------------------------------------------------------------------------------- /HiFiDLC/hero_modern/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HiFiDLC/sound/body_armor.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/body_armor.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/dash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/dash.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/game.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/game.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_boss_1_fight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_boss_1_fight.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_boss_2_fight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_boss_2_fight.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_boss_ambient.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_boss_ambient.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_caves.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_caves.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_city.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_city.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_guts.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_guts.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_halls.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_halls.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_ice_caves.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_ice_caves.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_last.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_last.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_necro.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_necro.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_portal_level.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_portal_level.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_prison.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_prison.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_spider.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_spider.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/ost_town_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/ost_town_1.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/smash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/smash.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_alert.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_badge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_badge.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_beacon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_beacon.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_bite.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_bite.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_blast.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_blast.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_bones.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_bones.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_boss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_boss.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_burning.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_burning.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_challenge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_challenge.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_charms.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_charms.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_click.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_crystal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_crystal.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_cursed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_cursed.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_death.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_death.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_descend.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_descend.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_dewdrop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_dewdrop.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_dominance.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_dominance.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_door_open.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_door_open.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_drink.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_drink.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_eat.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_evoke.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_evoke.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_explosion.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_explosion.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_falling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_falling.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_ghost.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_ghost.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_gold.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_gold.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_hit.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_item.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_item.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_levelup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_levelup.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_lightning.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_lightning.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_lullaby.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_lullaby.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_mastery.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_mastery.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_meld.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_meld.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_mimic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_mimic.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_miss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_miss.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_plant.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_plant.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_puff.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_puff.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_ray.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_ray.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_read.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_read.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_rocks.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_rocks.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_rotten_drop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_rotten_drop.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_secret.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_secret.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_shatter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_shatter.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_step.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_step.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_teleport.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_teleport.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_tomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_tomb.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_trap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_trap.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_unlock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_unlock.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_water.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_water.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/snd_zap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/snd_zap.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/surface.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/surface.mp3 -------------------------------------------------------------------------------- /HiFiDLC/sound/theme.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/sound/theme.mp3 -------------------------------------------------------------------------------- /HiFiDLC/strings_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/strings_en.json -------------------------------------------------------------------------------- /HiFiDLC/strings_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/strings_ru.json -------------------------------------------------------------------------------- /HiFiDLC/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/HiFiDLC/version.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /QWEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/QWEN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/README.md -------------------------------------------------------------------------------- /REPO_MAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/REPO_MAP.md -------------------------------------------------------------------------------- /RemixedDungeon/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/build.gradle -------------------------------------------------------------------------------- /RemixedDungeon/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/google-services.json -------------------------------------------------------------------------------- /RemixedDungeon/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/proguard-rules.txt -------------------------------------------------------------------------------- /RemixedDungeon/src/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/android/AndroidManifest.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/googlePlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/googlePlay/AndroidManifest.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/Spider_Pod_Animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/Spider_Pod_Animation.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/Spider_Queen_Buffed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/Spider_Queen_Buffed.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/air_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/air_elemental.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/amulet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/amulet.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/bat.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/blacksmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/blacksmith.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/brute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/brute.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/burning_fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/burning_fist.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/crab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/crab.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/demon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/demon.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/dm300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/dm300.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/body_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/body_armor.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/body_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/body_armor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/cloak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/cloak.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/cloak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/cloak.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/dash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/dash.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/dash.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/effects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/effects.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/magic_arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/magic_arrow.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/rogue_spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/rogue_spike.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/smash_blast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/smash_blast.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/smash_blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/smash_blast.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/smash_blast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/smash_blast2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/smash_fist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/smash_fist.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/smash_fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/smash_fist.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/specks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/specks.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/effects/trap_effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/effects/trap_effect.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/eye.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/fire_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/fire_elemental.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/fonts/pixel_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/fonts/pixel_font.ttf -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ghost.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/gnoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/gnoll.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/golem.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/goo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/goo.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hedgehog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hedgehog.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/armor/ElfArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/armor/ElfArmor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/armor/MageArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/armor/MageArmor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/armor/MailArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/armor/MailArmor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/armor/RatArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/armor/RatArmor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/body/gnoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/body/gnoll.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/body/lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/body/lich.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/body/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/body/man.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/body/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/body/statue.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/body/warlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/body/warlock.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/body/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/body/woman.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/death/common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/death/common.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/death/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/death/statue.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/death/warlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/death/warlock.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/empty.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/ELF_NONE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/ELF_NONE.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/ELF_SCOUT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/ELF_SCOUT.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/ELF_SHAMAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/ELF_SHAMAN.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/GNOLL_NONE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/GNOLL_NONE.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/MAGE_NONE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/MAGE_NONE.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/ROGUE_NONE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/ROGUE_NONE.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/head/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/head/statue.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero/initHeroes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero/initHeroes.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero_modern/body/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero_modern/body/man.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/hero_modern/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/hero_modern/empty.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/html/list_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/html/list_template.html -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/html/root_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/html/root_template.html -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/accessories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/accessories.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/ammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/ammo.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/armor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/artifacts.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/bags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/bags.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/books.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/candle.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/chaosArmor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/chaosArmor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/chaosBow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/chaosBow.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/chaosShield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/chaosShield.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/chaosStaff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/chaosStaff.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/chaosSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/chaosSword.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/daggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/daggers.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/drinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/drinks.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/food.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/gold.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/kusarigama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/kusarigama.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/mastery_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/mastery_items.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/materials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/materials.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/objects.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/overlays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/overlays.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/placeholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/placeholders.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/polearms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/polearms.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/potions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/potions.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/ranged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/ranged.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/rings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/rings.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/scrolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/scrolls.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/scrolls2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/scrolls2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/seeds.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/shields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/shields.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/shrooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/shrooms.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/swords.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/vials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/vials.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/items/wands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/items/wands.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/king.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/larva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/larva.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/barrels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/barrels.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/candle.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/candle.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/objects.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/portals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/portals.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/pot.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/statue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/statue.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/traps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/traps.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelObjects/well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelObjects/well.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Bestiary.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Church.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Church.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Cinema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Cinema.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Dungeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Dungeon.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Fortune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Fortune.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Library.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Portal.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Shop.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/TestLevel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/TestLevel.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Theater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Theater.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Town.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Town.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/Treasury.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/Treasury.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/levelsDesc/vwArena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/levelsDesc/vwArena.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/logic.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mimic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mimic.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mimic_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mimic_pie.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/BeeHive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/BeeHive.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/artificernpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/artificernpc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/azuterronnpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/azuterronnpc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/barman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/barman.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/bee.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/bella_npc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/bella_npc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/black_cat_npc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/black_cat_npc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/caged_kobold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/caged_kobold.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/cold_spirit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/cold_spirit.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/crystal.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/death_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/death_knight.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/deathling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/deathling.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/dread_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/dread_knight.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/earth_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/earth_elemental.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/enslavedsoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/enslavedsoul.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/exploding_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/exploding_skull.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/gnoll_zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/gnoll_zombie.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/golden_statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/golden_statue.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/guards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/guards.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/iceGuardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/iceGuardian.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/ice_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/ice_elemental.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/inquirer_npc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/inquirer_npc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/jar_of_souls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/jar_of_souls.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/kobold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/kobold.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/lich.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/mimic_amulet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/mimic_amulet.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/necromancernpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/necromancernpc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/nightmare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/nightmare.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/nyrdie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/nyrdie.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/plaguedoctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/plaguedoctor.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/pseudo_rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/pseudo_rat.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/reception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/reception.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/runicskull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/runicskull.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/scarecrownpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/scarecrownpc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/shadowlord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/shadowlord.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/snail.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/spiritOfPain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/spiritOfPain.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/town_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/town_bishop.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/town_bishop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/town_bishop2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/town_bishop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/town_bishop3.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/town_healer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/town_healer.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/town_librarian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/town_librarian.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/water_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/water_elemental.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/worm.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/yogs_brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/yogs_brain.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/yogs_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/yogs_eye.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/yogs_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/yogs_heart.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/yogs_teeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/yogs_teeth.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobs/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobs/zombie.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/BardNPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/BardNPC.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/BarmanNPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/BarmanNPC.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/Bee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/Bee.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/BeeHive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/BeeHive.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/BishopNPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/BishopNPC.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/BlackCat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/BlackCat.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/BlackRat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/BlackRat.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/DM300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/DM300.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/DeepSnail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/DeepSnail.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/DemoNpc1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/DemoNpc1.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/Goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/Goo.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/King.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/King.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/Lich.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/Lich.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/MazeShadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/MazeShadow.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/ServantNPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/ServantNPC.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/ShadowLord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/ShadowLord.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/Snail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/Snail.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/Tengu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/Tengu.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/Yog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/Yog.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/mobsDesc/YogsEye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/mobsDesc/YogsEye.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/monk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/monk.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/pet.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/piranha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/piranha.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/plants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/plants.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/rat.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ratking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ratking.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/rotting_fist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/rotting_fist.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scorpio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scorpio.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/actors/Burn.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/actors/Burn.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/actors/Chess.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/actors/Chess.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/actors/Snow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/actors/Snow.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/ai/BlackCat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/ai/BlackCat.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/ai/None.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/ai/None.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/buffs/Cloak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/buffs/Cloak.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/items/Kunai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/items/Kunai.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/actor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/actor.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/ads.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/ads.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/ai.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/buff.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/buff.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/item.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/item.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/json.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/lru.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/lru.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/mob.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/mob.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/object.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/object.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/quest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/quest.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/serpent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/serpent.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/shields.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/shields.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/spell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/spell.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/storage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/storage.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/trap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/trap.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/lib/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/lib/util.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Assasin.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Assasin.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Buffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Buffer.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Dummy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Dummy.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Hero.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Hero.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Hydra.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Hydra.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Mirror.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Mirror.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Rat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Rat.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Stinger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Stinger.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/mobs/Talkie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/mobs/Talkie.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/Bard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/Bard.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/Barman.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/Barman.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/Bishop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/Bishop.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/BlackCat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/BlackCat.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/Drunkard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/Drunkard.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/Inquirer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/Inquirer.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/npc/Servant.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/npc/Servant.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/objects/pot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/objects/pot.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/objects/well.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/objects/well.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Calm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Calm.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Charm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Charm.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Cloak.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Cloak.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Dash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Dash.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Haste.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Haste.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Heal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Heal.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Order.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Order.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Roar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Roar.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/spells/Smash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/spells/Smash.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/traps/Chasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/traps/Chasm.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/traps/Disarm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/traps/Disarm.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/traps/Drain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/traps/Drain.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/scripts/traps/Fall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/scripts/traps/Fall.lua -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/shadow.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/shaman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/shaman.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sheep.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/shopkeeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/shopkeeper.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/skeleton.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/body_armor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/body_armor.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/dash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/dash.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/game.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/game.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/ost_boss_fight.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/ost_boss_fight.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/ost_caves.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/ost_caves.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/ost_ice_caves.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/ost_ice_caves.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/ost_town_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/ost_town_1.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/smash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/smash.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_alert.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_badge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_badge.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_beacon.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_beacon.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_bite.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_bite.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_blast.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_blast.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_bones.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_bones.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_boss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_boss.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_burning.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_burning.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_challenge.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_challenge.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_charms.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_charms.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_click.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_crystal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_crystal.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_cursed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_cursed.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_death.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_descend.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_descend.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_dewdrop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_dewdrop.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_dominance.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_dominance.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_door_open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_door_open.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_drink.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_drink.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_eat.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_evoke.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_evoke.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_explosion.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_falling.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_falling.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_ghost.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_ghost.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_gold.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_gold.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_hit.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_item.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_item.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_levelup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_levelup.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_lightning.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_lightning.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_lullaby.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_lullaby.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_mastery.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_mastery.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_meld.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_meld.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_mimic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_mimic.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_miss.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_miss.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_plant.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_plant.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_puff.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_puff.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_ray.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_ray.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_read.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_read.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_rocks.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_rocks.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_secret.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_secret.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_shatter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_shatter.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_step.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_step.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_teleport.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_teleport.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_tomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_tomb.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_trap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_trap.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_unlock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_unlock.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_water.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_water.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/snd_zap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/snd_zap.mp3 -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/surface.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/surface.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/sound/theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/sound/theme.ogg -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spell_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spell_icons.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/Light.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/common.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/hunting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/hunting.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/ninja.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/obsolete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/obsolete.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/rogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/rogue.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spellsIcons/warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spellsIcons/warrior.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spider_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spider_egg.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spider_exploding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spider_exploding.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spider_mind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spider_mind.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spider_nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spider_nest.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spider_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spider_queen.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spider_servant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spider_servant.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spinner.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Acidic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Acidic.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Albino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Albino.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Bandit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Bandit.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/BardNPC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/BardNPC.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Bat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Bat.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Bee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Bee.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/BeeHive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/BeeHive.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Brute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Brute.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Crab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Crab.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Crystal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Crystal.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/DM300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/DM300.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Eye.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Ghost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Ghost.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Gnoll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Gnoll.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Golem.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Goo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Goo.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Imp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Imp.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/King.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/King.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Kobold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Kobold.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Larva.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Larva.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Lich.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Lich.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Mimic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Mimic.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Monk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Monk.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Piranha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Piranha.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Rat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Rat.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/RatKing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/RatKing.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Scorpio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Scorpio.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Sheep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Sheep.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Snail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Snail.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Swarm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Swarm.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Tengu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Tengu.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Thief.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Thief.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/spritesDesc/Worm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/spritesDesc/Worm.json -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/statue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/statue.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/succubus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/succubus.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/swarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/swarm.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tengu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tengu.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/thief.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/thief.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles0.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles0_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles0_x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles1.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles1_boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles1_boss.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles1_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles1_x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles2_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles2_x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles3.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles4.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_guts_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_guts_x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_ice_caves_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_ice_caves_x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_necropolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_necropolis.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_portal.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_shadow_lord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_shadow_lord.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_spider_nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_spider_nest.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_town.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/tiles_town_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/tiles_town_inside.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/arcs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/arcs1.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/arcs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/arcs2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/avatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/avatars.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/badges.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/banners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/banners.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/buffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/buffs.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/challenges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/challenges.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/chrome.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/chrome_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/chrome_marble.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/dashboard.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/exp_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/exp_bar.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/fireball.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/font1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/font1x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/font25x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/font25x.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/hp_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/hp_bar.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/icons.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/icons2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/icons2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/large_buffs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/large_buffs.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/rus_banners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/rus_banners.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/sp_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/sp_bar.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/status_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/status_pane.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/surface.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/title.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/title_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/title_marble.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/title_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/title_pc.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/ui_icons12x12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/ui_icons12x12.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/ui_icons6x6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/ui_icons6x6.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/ukr_banners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/ukr_banners.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/ui/xyz_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/ui/xyz_tiles.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/undead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/undead.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/wandmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/wandmaker.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/warlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/warlock.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water0.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water1.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water2.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water3.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water4.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water_guts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water_guts.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water_ice_caves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water_ice_caves.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water_necropolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water_necropolis.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water_portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water_portal.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/water_spider_nest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/water_spider_nest.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/web/pixelcraft/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/web/pixelcraft/sw.js -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/wraith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/wraith.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/assets/yog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/assets/yog.png -------------------------------------------------------------------------------- /RemixedDungeon/src/main/java/com/nyrds/util/Mods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/java/com/nyrds/util/Mods.java -------------------------------------------------------------------------------- /RemixedDungeon/src/main/java/com/nyrds/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/java/com/nyrds/util/Util.java -------------------------------------------------------------------------------- /RemixedDungeon/src/main/java/com/watabou/pixeldungeon/ui/IWindow.java: -------------------------------------------------------------------------------- 1 | package com.watabou.pixeldungeon.ui; 2 | 3 | public interface IWindow { 4 | } 5 | -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-de/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-de/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-el/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-el/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-es/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-es/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-fr/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-fr/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-hu/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-hu/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-in/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-in/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-it/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-it/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-ja/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-ja/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-ko/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-ko/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-ms/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-ms/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-pl/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-pl/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-ru/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-ru/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-tr/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-tr/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values-uk/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values-uk/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values/string_arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values/string_arrays.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values/strings_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values/strings_all.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/main/res/xml/backup_descriptor.xml -------------------------------------------------------------------------------- /RemixedDungeon/src/ruStore/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/src/ruStore/AndroidManifest.xml -------------------------------------------------------------------------------- /RemixedDungeon/testKey/test.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeon/testKey/test.jks -------------------------------------------------------------------------------- /RemixedDungeonDesktop/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | desktop/rundin/** -------------------------------------------------------------------------------- /RemixedDungeonDesktop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonDesktop/build.gradle -------------------------------------------------------------------------------- /RemixedDungeonDesktop/make_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonDesktop/make_json.py -------------------------------------------------------------------------------- /RemixedDungeonDesktop/make_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonDesktop/make_r.py -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/assets: -------------------------------------------------------------------------------- 1 | ../../../RemixedDungeon/src/main/assets/ -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/l10ns/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/run-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonDesktop/src/desktop/run-mac.sh -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonDesktop/src/desktop/run.bat -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonDesktop/src/desktop/run.sh -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/rundir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/desktop/rundir/mods/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/generated/java/com/nyrds/pixeldungeon/ml/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RemixedDungeonDesktop/src/libgdx/java/androidx/annotation/Keep.java: -------------------------------------------------------------------------------- 1 | package androidx.annotation; 2 | 3 | public @interface Keep { 4 | } 5 | -------------------------------------------------------------------------------- /RemixedDungeonHtml/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonHtml/build.gradle -------------------------------------------------------------------------------- /RemixedDungeonHtml/make_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonHtml/make_json.py -------------------------------------------------------------------------------- /RemixedDungeonHtml/make_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonHtml/make_r.py -------------------------------------------------------------------------------- /RemixedDungeonHtml/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonHtml/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /RemixedDungeonHtml/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/RemixedDungeonHtml/src/main/webapp/index.html -------------------------------------------------------------------------------- /TiledMaps/Church.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Church.tmx -------------------------------------------------------------------------------- /TiledMaps/Cinema.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Cinema.tmx -------------------------------------------------------------------------------- /TiledMaps/Fortune.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Fortune.tmx -------------------------------------------------------------------------------- /TiledMaps/FortuneShop.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/FortuneShop.tmx -------------------------------------------------------------------------------- /TiledMaps/Inn.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Inn.tmx -------------------------------------------------------------------------------- /TiledMaps/Library.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Library.tmx -------------------------------------------------------------------------------- /TiledMaps/Png/Mobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Png/Mobs.png -------------------------------------------------------------------------------- /TiledMaps/Png/Objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Png/Objects.png -------------------------------------------------------------------------------- /TiledMaps/Png/logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Png/logic.png -------------------------------------------------------------------------------- /TiledMaps/Png/tiles0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Png/tiles0.png -------------------------------------------------------------------------------- /TiledMaps/Png/tiles_town_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Png/tiles_town_inside.png -------------------------------------------------------------------------------- /TiledMaps/Png/tiles_town_outside_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Png/tiles_town_outside_winter.png -------------------------------------------------------------------------------- /TiledMaps/Portal.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Portal.tmx -------------------------------------------------------------------------------- /TiledMaps/PortalShrine.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/PortalShrine.tmx -------------------------------------------------------------------------------- /TiledMaps/ScriptsArena.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/ScriptsArena.tmx -------------------------------------------------------------------------------- /TiledMaps/Shop.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Shop.tmx -------------------------------------------------------------------------------- /TiledMaps/TestMapCurch.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/TestMapCurch.tmx -------------------------------------------------------------------------------- /TiledMaps/Theater.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Theater.tmx -------------------------------------------------------------------------------- /TiledMaps/Town(old).tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Town(old).tmx -------------------------------------------------------------------------------- /TiledMaps/Town.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Town.tmx -------------------------------------------------------------------------------- /TiledMaps/TownChurch.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/TownChurch.tmx -------------------------------------------------------------------------------- /TiledMaps/TownLibrary.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/TownLibrary.tmx -------------------------------------------------------------------------------- /TiledMaps/Town_desktop.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Town_desktop.tmx -------------------------------------------------------------------------------- /TiledMaps/Tutorial.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/Tutorial.tmx -------------------------------------------------------------------------------- /TiledMaps/tilesets/Mobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/tilesets/Mobs.tsx -------------------------------------------------------------------------------- /TiledMaps/tilesets/Objects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/tilesets/Objects.tsx -------------------------------------------------------------------------------- /TiledMaps/tilesets/logic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/tilesets/logic.tsx -------------------------------------------------------------------------------- /TiledMaps/tilesets/tiles_town_inside.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/tilesets/tiles_town_inside.tsx -------------------------------------------------------------------------------- /TiledMaps/tilesets/tiles_town_outside_winter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/tilesets/tiles_town_outside_winter.tsx -------------------------------------------------------------------------------- /TiledMaps/vwArena.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/TiledMaps/vwArena.tmx -------------------------------------------------------------------------------- /annotation/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /annotation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/annotation/build.gradle -------------------------------------------------------------------------------- /annotation/src/main/java/com/nyrds/LuaInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/annotation/src/main/java/com/nyrds/LuaInterface.java -------------------------------------------------------------------------------- /annotation/src/main/java/com/nyrds/Packable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/annotation/src/main/java/com/nyrds/Packable.java -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/bitrise.yml -------------------------------------------------------------------------------- /docs/BitmapData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/BitmapData.md -------------------------------------------------------------------------------- /docs/PLATFORM_MARKET_DIAGRAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/PLATFORM_MARKET_DIAGRAM.md -------------------------------------------------------------------------------- /docs/PLATFORM_MARKET_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/PLATFORM_MARKET_STRUCTURE.md -------------------------------------------------------------------------------- /docs/PLATFORM_OVERLAY_DIAGRAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/PLATFORM_OVERLAY_DIAGRAM.md -------------------------------------------------------------------------------- /docs/PLATFORM_OVERLAY_SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/PLATFORM_OVERLAY_SYSTEM.md -------------------------------------------------------------------------------- /docs/SNAP_BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/SNAP_BUILD.md -------------------------------------------------------------------------------- /docs/UI_Composition_Principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/UI_Composition_Principles.md -------------------------------------------------------------------------------- /docs/WIKI_DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/WIKI_DOCUMENTATION.md -------------------------------------------------------------------------------- /docs/WebServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/WebServer.md -------------------------------------------------------------------------------- /docs/advanced_sprite_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/advanced_sprite_examples.md -------------------------------------------------------------------------------- /docs/modding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/docs/modding.md -------------------------------------------------------------------------------- /extract_tengu_liver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/extract_tengu_liver.py -------------------------------------------------------------------------------- /generated_spell_wiki/backstab_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/backstab_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/body_armor_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/body_armor_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/calm_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/calm_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/charm_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/charm_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/cloak_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/cloak_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/curse_item_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/curse_item_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/dark_sacrifice_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/dark_sacrifice_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/dash_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/dash_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/die_hard_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/die_hard_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/exhumation_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/exhumation_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/freeze_globe_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/freeze_globe_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/haste_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/haste_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/heal_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/heal_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/healing_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/healing_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/hide_in_grass_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/hide_in_grass_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/ignite_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/ignite_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/kunai_throw_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/kunai_throw_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/lightning_bolt_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/lightning_bolt_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/magic_arrow_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/magic_arrow_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/magic_torch_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/magic_torch_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/nature_armor_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/nature_armor_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/order_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/order_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/possess_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/possess_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/raise_dead_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/raise_dead_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/roar_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/roar_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/root_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/root_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/shoot_in_eye_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/shoot_in_eye_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/smash_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/smash_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/sprout_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/sprout_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/summon_beast_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/summon_beast_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/test_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/test_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/town_portal_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/town_portal_spell.txt -------------------------------------------------------------------------------- /generated_spell_wiki/wind_gust_spell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/generated_spell_wiki/wind_gust_spell.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hero layers/Hero Layers.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero layers/Hero Layers.xcf -------------------------------------------------------------------------------- /hero_previews/assassin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/assassin.txt -------------------------------------------------------------------------------- /hero_previews/battlemage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/battlemage.txt -------------------------------------------------------------------------------- /hero_previews/berserker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/berserker.txt -------------------------------------------------------------------------------- /hero_previews/doctor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/doctor.txt -------------------------------------------------------------------------------- /hero_previews/elf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/elf.txt -------------------------------------------------------------------------------- /hero_previews/freerunner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/freerunner.txt -------------------------------------------------------------------------------- /hero_previews/gladiator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/gladiator.txt -------------------------------------------------------------------------------- /hero_previews/gnoll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/gnoll.txt -------------------------------------------------------------------------------- /hero_previews/guardian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/guardian.txt -------------------------------------------------------------------------------- /hero_previews/huntress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/huntress.txt -------------------------------------------------------------------------------- /hero_previews/lich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/lich.txt -------------------------------------------------------------------------------- /hero_previews/mage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/mage.txt -------------------------------------------------------------------------------- /hero_previews/necromancer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/necromancer.txt -------------------------------------------------------------------------------- /hero_previews/priest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/priest.txt -------------------------------------------------------------------------------- /hero_previews/rogue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/rogue.txt -------------------------------------------------------------------------------- /hero_previews/scout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/scout.txt -------------------------------------------------------------------------------- /hero_previews/shaman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/shaman.txt -------------------------------------------------------------------------------- /hero_previews/sniper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/sniper.txt -------------------------------------------------------------------------------- /hero_previews/warden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/warden.txt -------------------------------------------------------------------------------- /hero_previews/warlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/warlock.txt -------------------------------------------------------------------------------- /hero_previews/warrior.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/warrior.txt -------------------------------------------------------------------------------- /hero_previews/witchdoctor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/hero_previews/witchdoctor.txt -------------------------------------------------------------------------------- /json_clone/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /json_clone/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/build.gradle -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONArray.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONException.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONObject.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONPointer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONPointer.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONString.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONStringer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONStringer.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONTokener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONTokener.java -------------------------------------------------------------------------------- /json_clone/src/main/java/org/json/JSONWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/json_clone/src/main/java/org/json/JSONWriter.java -------------------------------------------------------------------------------- /modding/MinimalModWithMap/levelsDesc/Dungeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/modding/MinimalModWithMap/levelsDesc/Dungeon.json -------------------------------------------------------------------------------- /modding/MinimalModWithMap/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/modding/MinimalModWithMap/version.json -------------------------------------------------------------------------------- /pick_random_wiki_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/pick_random_wiki_pages.sh -------------------------------------------------------------------------------- /platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/platform.md -------------------------------------------------------------------------------- /processor/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /processor/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/processor/build.gradle -------------------------------------------------------------------------------- /processor/settings.gradle: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings.android.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/settings.android.gradle -------------------------------------------------------------------------------- /settings.desktop.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/settings.desktop.gradle -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/settings.gradle -------------------------------------------------------------------------------- /settings.html.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/settings.html.gradle -------------------------------------------------------------------------------- /snap/local/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/snap/local/update_version.sh -------------------------------------------------------------------------------- /snap/local/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/snap/local/wrapper.sh -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /tools/crush/crush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/crush/crush.sh -------------------------------------------------------------------------------- /tools/mods/mods2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/mods/mods2.json -------------------------------------------------------------------------------- /tools/mods/mods_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/mods/mods_data.py -------------------------------------------------------------------------------- /tools/mods/packs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/mods/packs -------------------------------------------------------------------------------- /tools/py-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/README.md -------------------------------------------------------------------------------- /tools/py-tools/categorize_unused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/categorize_unused.py -------------------------------------------------------------------------------- /tools/py-tools/check_unused_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/check_unused_images.py -------------------------------------------------------------------------------- /tools/py-tools/extract_all_item_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/extract_all_item_sprites.py -------------------------------------------------------------------------------- /tools/py-tools/extract_custom_item_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/extract_custom_item_sprites.py -------------------------------------------------------------------------------- /tools/py-tools/extract_item_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/extract_item_sprites.py -------------------------------------------------------------------------------- /tools/py-tools/extract_mob_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/extract_mob_sprites.py -------------------------------------------------------------------------------- /tools/py-tools/find_red_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/find_red_links.py -------------------------------------------------------------------------------- /tools/py-tools/find_unused_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/find_unused_files.py -------------------------------------------------------------------------------- /tools/py-tools/generate_hero_previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/generate_hero_previews.py -------------------------------------------------------------------------------- /tools/py-tools/generate_spell_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/generate_spell_images.py -------------------------------------------------------------------------------- /tools/py-tools/generate_spell_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/generate_spell_wiki.py -------------------------------------------------------------------------------- /tools/py-tools/remove_duplicate_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/remove_duplicate_files.py -------------------------------------------------------------------------------- /tools/py-tools/rename_capitalized_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/rename_capitalized_files.py -------------------------------------------------------------------------------- /tools/py-tools/search_wiki_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/search_wiki_duplicates.py -------------------------------------------------------------------------------- /tools/py-tools/test_json_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/test_json_configs.py -------------------------------------------------------------------------------- /tools/py-tools/test_lua_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/test_lua_syntax.py -------------------------------------------------------------------------------- /tools/py-tools/update_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/update_links.py -------------------------------------------------------------------------------- /tools/py-tools/update_links_specific.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/update_links_specific.py -------------------------------------------------------------------------------- /tools/py-tools/wiki_page_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/wiki_page_rename.py -------------------------------------------------------------------------------- /tools/py-tools/wiki_potential_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/wiki_potential_links.py -------------------------------------------------------------------------------- /tools/py-tools/wiki_potential_links_optimized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/wiki_potential_links_optimized.py -------------------------------------------------------------------------------- /tools/py-tools/wiki_redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/py-tools/wiki_redirects.py -------------------------------------------------------------------------------- /tools/sprites/dual_wield_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/sprites/dual_wield_frames.py -------------------------------------------------------------------------------- /tools/sprites/left_hand_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/sprites/left_hand_fix.py -------------------------------------------------------------------------------- /tools/sprites/mobs_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/sprites/mobs_slice.py -------------------------------------------------------------------------------- /tools/sprites/shoulder_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/sprites/shoulder_extractor.py -------------------------------------------------------------------------------- /tools/sprites/sprite_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/sprites/sprite_split.py -------------------------------------------------------------------------------- /tools/sprites/to_modern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/sprites/to_modern.py -------------------------------------------------------------------------------- /tools/tx/cn_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/tx/cn_sort.py -------------------------------------------------------------------------------- /tools/tx/trapHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/tx/trapHelper.py -------------------------------------------------------------------------------- /tools/tx/tx2as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/tools/tx/tx2as.py -------------------------------------------------------------------------------- /update_wiki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/update_wiki.sh -------------------------------------------------------------------------------- /validation_scripts_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/validation_scripts_documentation.md -------------------------------------------------------------------------------- /version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/version.properties -------------------------------------------------------------------------------- /wiki_map.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NYRDS/remixed-dungeon/HEAD/wiki_map.dot --------------------------------------------------------------------------------