├── .classpath ├── .gitignore ├── .project ├── README.md ├── pom.xml ├── redist ├── Ak.jar ├── Demo1.jar ├── Demo2.jar └── Phantasy.jar ├── screenshots ├── Ak_1.png ├── Ak_2.png ├── Ak_3.png ├── JLud2D_Island.png ├── JLud2d_Warrior.png ├── PSG1.png ├── PSG2.png ├── PS_1.png ├── PS_2.png ├── PS_Battle3.png ├── PS_Dungeon.png ├── Sully_1.png ├── Sully_2.png ├── Sully_3.png ├── Sully_4.png └── Sully_5.png ├── src ├── audio │ ├── MidiPlayer.java │ ├── Mp3Player.java │ ├── VMusic.java │ ├── WavPlayer.java │ ├── gme │ │ ├── BlipBuffer.java │ │ ├── ClassicEmu.java │ │ ├── DataReader.java │ │ ├── GbApu.java │ │ ├── GbCpu.java │ │ ├── GbsEmu.java │ │ ├── MemPager.java │ │ ├── MusicEmu.java │ │ ├── NesApu.java │ │ ├── NesCpu.java │ │ ├── NsfEmu.java │ │ ├── SmsApu.java │ │ ├── SpcCpu.java │ │ ├── SpcDsp.java │ │ ├── SpcEmu.java │ │ ├── VGMPlayer.java │ │ ├── VgmEmu.java │ │ ├── YM2612.java │ │ └── gme.java │ ├── javazoom │ │ └── jl │ │ │ ├── converter │ │ │ ├── Converter.java │ │ │ ├── RiffFile.java │ │ │ ├── WaveFile.java │ │ │ ├── WaveFileObuffer.java │ │ │ └── jlc.java │ │ │ ├── decoder │ │ │ ├── BitReserve.java │ │ │ ├── Bitstream.java │ │ │ ├── BitstreamErrors.java │ │ │ ├── BitstreamException.java │ │ │ ├── Control.java │ │ │ ├── Crc16.java │ │ │ ├── Decoder.java │ │ │ ├── DecoderErrors.java │ │ │ ├── DecoderException.java │ │ │ ├── Equalizer.java │ │ │ ├── FrameDecoder.java │ │ │ ├── Header.java │ │ │ ├── InputStreamSource.java │ │ │ ├── JavaLayerError.java │ │ │ ├── JavaLayerErrors.java │ │ │ ├── JavaLayerException.java │ │ │ ├── JavaLayerHook.java │ │ │ ├── JavaLayerUtils.java │ │ │ ├── LayerIDecoder.java │ │ │ ├── LayerIIDecoder.java │ │ │ ├── LayerIIIDecoder.java │ │ │ ├── Manager.java │ │ │ ├── Obuffer.java │ │ │ ├── OutputChannels.java │ │ │ ├── SampleBuffer.java │ │ │ ├── Source.java │ │ │ ├── SynthesisFilter.java │ │ │ ├── au2lin.ser │ │ │ ├── huffcodetab.java │ │ │ ├── l3reorder.ser │ │ │ ├── lin2au.ser │ │ │ ├── readme.txt │ │ │ └── sfd.ser │ │ │ └── player │ │ │ ├── AudioDevice.java │ │ │ ├── AudioDeviceBase.java │ │ │ ├── AudioDeviceFactory.java │ │ │ ├── FactoryRegistry.java │ │ │ ├── JavaSoundAudioDevice.java │ │ │ ├── JavaSoundAudioDeviceFactory.java │ │ │ ├── NullAudioDevice.java │ │ │ ├── Player.java │ │ │ ├── PlayerApplet.java │ │ │ ├── advanced │ │ │ ├── AdvancedPlayer.java │ │ │ ├── PlaybackEvent.java │ │ │ ├── PlaybackListener.java │ │ │ └── jlap.java │ │ │ └── jlp.java │ └── jmikmod │ │ ├── MikCvtApp.java │ │ ├── MikMod │ │ ├── AUDTMP.java │ │ ├── Display │ │ │ └── clDisplay.java │ │ ├── Drivers │ │ │ ├── JavaX_Driver.java │ │ │ ├── NS_Driver.java │ │ │ ├── Native_Driver.java │ │ │ ├── Raw_Driver.java │ │ │ └── Wav_Driver.java │ │ ├── ENVPR.java │ │ ├── ENVPT.java │ │ ├── INSTRUMENT.java │ │ ├── Loaders │ │ │ ├── M15_Loader.java │ │ │ ├── MOD_Loader.java │ │ │ ├── MTM_Loader.java │ │ │ ├── S3M_Loader.java │ │ │ ├── S69_Loader.java │ │ │ ├── STM_Loader.java │ │ │ ├── ULT_Loader.java │ │ │ ├── UNI_Loader.java │ │ │ └── XM_Loader.java │ │ ├── MDriver │ │ │ └── clMDriver.java │ │ ├── MLoader │ │ │ └── clMLoader.java │ │ ├── MMIO │ │ │ └── MMIO.java │ │ ├── MPlayer │ │ │ └── clMPlayer.java │ │ ├── MUniTrk │ │ │ └── clMUniTrk.java │ │ ├── Makefile │ │ ├── SAMPLE.java │ │ ├── TODO │ │ ├── UI │ │ │ └── myUI.java │ │ ├── UNIMOD.java │ │ ├── VINFO.java │ │ ├── Virtch │ │ │ └── clVirtch.java │ │ ├── clDRIVER.java │ │ ├── clDisplayBase.java │ │ ├── clLOADER.java │ │ ├── clMDriverBase.java │ │ ├── clMain.java │ │ ├── clMainBase.java │ │ ├── clMikCvtMain.java │ │ └── curmod.java │ │ └── MikModApp.java ├── core │ ├── Controls.java │ ├── DefaultPalette.java │ ├── GUI.java │ ├── MainEngine.java │ └── Script.java ├── demos │ ├── ak │ │ ├── AK.java │ │ ├── Ak.anim.json │ │ ├── Ak.png │ │ ├── Big.png │ │ ├── akidd.png │ │ ├── akidd.tiles.json │ │ ├── akidd.vsp │ │ ├── config.json │ │ ├── default.meta.png │ │ ├── level01.map.json │ │ ├── level02.map.json │ │ ├── level03.map.json │ │ ├── level04.map.json │ │ ├── level05.map.json │ │ ├── level06.map.json │ │ ├── level07.map.json │ │ ├── level08.map.json │ │ ├── level09.map.json │ │ ├── level10.map.json │ │ ├── level11.map.json │ │ ├── level12.map.json │ │ ├── level13.map.json │ │ ├── level14.map.json │ │ ├── level15.map.json │ │ ├── level16.map.json │ │ ├── level17.map.json │ │ ├── level18.map.json │ │ ├── level19.map.json │ │ ├── level20.map.json │ │ ├── level21.map.json │ │ ├── level22.map.json │ │ ├── level30.map.json │ │ ├── monster.png │ │ └── res │ │ │ ├── image │ │ │ ├── Rock_c.gif │ │ │ ├── Rock_g.gif │ │ │ ├── Rock_t.gif │ │ │ ├── Title.PNG │ │ │ ├── brac0.gif │ │ │ ├── brac1.gif │ │ │ ├── firing.gif │ │ │ ├── leaf.gif │ │ │ ├── shopkeep.png │ │ │ ├── smallfont.gif │ │ │ └── world.gif │ │ │ ├── music │ │ │ ├── field.vgm │ │ │ ├── field.vgz │ │ │ ├── intro.vgz │ │ │ ├── moto.vgz │ │ │ ├── swim.vgm │ │ │ └── swim.vgz │ │ │ └── sound │ │ │ ├── Brac.wav │ │ │ ├── Death.wav │ │ │ ├── Gold.wav │ │ │ ├── Hit.wav │ │ │ ├── Item.wav │ │ │ ├── Mapa.mp3 │ │ │ ├── Punch.wav │ │ │ ├── Rock.wav │ │ │ ├── Star.wav │ │ │ └── Water.wav │ ├── demo1 │ │ ├── Demo1.java │ │ ├── Fortress.s3m │ │ ├── beach_tileset.json │ │ ├── beach_tileset.png │ │ ├── config.json │ │ ├── default.meta.png │ │ ├── island.map.json │ │ ├── maxim.anim.json │ │ ├── maxim.png │ │ ├── xOrc_Male1.anim.json │ │ └── xOrc_Male1.png │ ├── demo2 │ │ ├── Demo2.java │ │ ├── Fortress.s3m │ │ ├── axe swing.wav │ │ ├── config.json │ │ ├── default.meta.png │ │ ├── goldw.map.json │ │ ├── goldw.png │ │ ├── goldw.tiles.json │ │ ├── warrior.anim.json │ │ └── warrior.png │ ├── ps │ │ ├── CITY.MOD │ │ ├── MapedPreferences.xml │ │ ├── PSDungeon.java │ │ ├── Phantasy.java │ │ ├── PhantasyArena.java │ │ ├── Title.java │ │ ├── Title.map │ │ ├── Title.map.json │ │ ├── Title.png │ │ ├── Title.tiles.json │ │ ├── Title.vsp │ │ ├── battle │ │ │ ├── enemy_fire.anim.json │ │ │ ├── enemy_fire.png │ │ │ ├── enemy_new │ │ │ │ ├── cyclop.anim.json │ │ │ │ ├── cyclop.png │ │ │ │ ├── death_knight.anim.json │ │ │ │ ├── death_knight.png │ │ │ │ ├── dezo_alt.anim.json │ │ │ │ ├── dezo_alt.png │ │ │ │ ├── gaia.anim.json │ │ │ │ ├── gaia.png │ │ │ │ ├── giantspider.anim.json │ │ │ │ ├── giantspider.png │ │ │ │ ├── gold_club.anim.json │ │ │ │ ├── gold_club.png │ │ │ │ ├── mota_shooter.anim.json │ │ │ │ ├── mota_shooter.png │ │ │ │ ├── nanocop.anim.json │ │ │ │ ├── nanocop.png │ │ │ │ ├── oliphant.anim.json │ │ │ │ ├── oliphant.png │ │ │ │ ├── poisonplant.anim.json │ │ │ │ ├── poisonplant.png │ │ │ │ ├── revenant.anim.json │ │ │ │ ├── revenant.png │ │ │ │ ├── skeleton_guard.anim.json │ │ │ │ ├── skeleton_guard.png │ │ │ │ ├── snow_lion.anim.json │ │ │ │ ├── snow_lion.png │ │ │ │ ├── storm_fly.anim.json │ │ │ │ ├── storm_fly.png │ │ │ │ ├── vampire_lord.anim.json │ │ │ │ ├── vampire_lord.png │ │ │ │ ├── wizard.anim.json │ │ │ │ └── wizard.png │ │ │ ├── enemy_ps1 │ │ │ │ ├── ammonite.anim.json │ │ │ │ ├── ammonite.png │ │ │ │ ├── amundsen.anim.json │ │ │ │ ├── amundsen.png │ │ │ │ ├── androcop.anim.json │ │ │ │ ├── androcop.png │ │ │ │ ├── ant_lion.anim.json │ │ │ │ ├── ant_lion.png │ │ │ │ ├── barbarian.anim.json │ │ │ │ ├── barbarian.png │ │ │ │ ├── batalion.anim.json │ │ │ │ ├── batalion.png │ │ │ │ ├── bigclub.anim.json │ │ │ │ ├── bigclub.png │ │ │ │ ├── blue_dragon.anim.json │ │ │ │ ├── blue_dragon.png │ │ │ │ ├── blueslime.anim.json │ │ │ │ ├── blueslime.png │ │ │ │ ├── centaur.anim.json │ │ │ │ ├── centaur.png │ │ │ │ ├── crawler.anim.json │ │ │ │ ├── crawler.png │ │ │ │ ├── darkfalz.anim.json │ │ │ │ ├── darkfalz.png │ │ │ │ ├── deadtree.anim.json │ │ │ │ ├── deadtree.png │ │ │ │ ├── dezorian.anim.json │ │ │ │ ├── dezorian.png │ │ │ │ ├── dr_mad.anim.json │ │ │ │ ├── dr_mad.png │ │ │ │ ├── efarmer.anim.json │ │ │ │ ├── efarmer.png │ │ │ │ ├── elephant.anim.json │ │ │ │ ├── elephant.png │ │ │ │ ├── evildead.anim.json │ │ │ │ ├── evildead.png │ │ │ │ ├── evilhead.anim.json │ │ │ │ ├── evilhead.png │ │ │ │ ├── executer.anim.json │ │ │ │ ├── executer.png │ │ │ │ ├── fishman.anim.json │ │ │ │ ├── fishman.png │ │ │ │ ├── frostman.anim.json │ │ │ │ ├── frostman.png │ │ │ │ ├── ghoul.anim.json │ │ │ │ ├── ghoul.png │ │ │ │ ├── giant.anim.json │ │ │ │ ├── giant.png │ │ │ │ ├── giantfly.anim.json │ │ │ │ ├── giantfly.png │ │ │ │ ├── golden_dragon.anim.json │ │ │ │ ├── golden_dragon.png │ │ │ │ ├── goldlens.anim.json │ │ │ │ ├── goldlens.png │ │ │ │ ├── golem.anim.json │ │ │ │ ├── golem.png │ │ │ │ ├── green_dragon.anim.json │ │ │ │ ├── green_dragon.png │ │ │ │ ├── greenslime.anim.json │ │ │ │ ├── greenslime.png │ │ │ │ ├── gscorpion.anim.json │ │ │ │ ├── gscorpion.png │ │ │ │ ├── horseman.anim.json │ │ │ │ ├── horseman.png │ │ │ │ ├── lassic.anim.json │ │ │ │ ├── lassic.png │ │ │ │ ├── leech.anim.json │ │ │ │ ├── leech.png │ │ │ │ ├── lich.anim.json │ │ │ │ ├── lich.png │ │ │ │ ├── magician.anim.json │ │ │ │ ├── magician.png │ │ │ │ ├── mammoth.anim.json │ │ │ │ ├── mammoth.png │ │ │ │ ├── maneater.anim.json │ │ │ │ ├── maneater.png │ │ │ │ ├── manticore.anim.json │ │ │ │ ├── manticore.png │ │ │ │ ├── marauder.anim.json │ │ │ │ ├── marauder.png │ │ │ │ ├── marshman.anim.json │ │ │ │ ├── marshman.png │ │ │ │ ├── medusa.anim.json │ │ │ │ ├── medusa.png │ │ │ │ ├── nessie.anim.json │ │ │ │ ├── nessie.png │ │ │ │ ├── nfarmer.anim.json │ │ │ │ ├── nfarmer.png │ │ │ │ ├── octopus.anim.json │ │ │ │ ├── octopus.png │ │ │ │ ├── owlbear.anim.json │ │ │ │ ├── owlbear.png │ │ │ │ ├── reaper.anim.json │ │ │ │ ├── reaper.png │ │ │ │ ├── red_dragon.anim.json │ │ │ │ ├── red_dragon.png │ │ │ │ ├── redslime.anim.json │ │ │ │ ├── redslime.png │ │ │ │ ├── robotcop.anim.json │ │ │ │ ├── robotcop.png │ │ │ │ ├── saccubus.anim.json │ │ │ │ ├── saccubus.png │ │ │ │ ├── sandworm.anim.json │ │ │ │ ├── sandworm.png │ │ │ │ ├── scorpion.anim.json │ │ │ │ ├── scorpion.png │ │ │ │ ├── scorpius.anim.json │ │ │ │ ├── scorpius.png │ │ │ │ ├── serpent.anim.json │ │ │ │ ├── serpent.png │ │ │ │ ├── shadow.anim.json │ │ │ │ ├── shadow.png │ │ │ │ ├── shelfish.anim.json │ │ │ │ ├── shelfish.png │ │ │ │ ├── skeleton.anim.json │ │ │ │ ├── skeleton.png │ │ │ │ ├── skullen.anim.json │ │ │ │ ├── skullen.png │ │ │ │ ├── sorcerer.anim.json │ │ │ │ ├── sorcerer.png │ │ │ │ ├── sphinx.anim.json │ │ │ │ ├── sphinx.png │ │ │ │ ├── stalker.anim.json │ │ │ │ ├── stalker.png │ │ │ │ ├── sworm.anim.json │ │ │ │ ├── sworm.png │ │ │ │ ├── tarantul.anim.json │ │ │ │ ├── tarantul.png │ │ │ │ ├── tarzimal.anim.json │ │ │ │ ├── tarzimal.png │ │ │ │ ├── tentacle.anim.json │ │ │ │ ├── tentacle.png │ │ │ │ ├── titan.anim.json │ │ │ │ ├── titan.png │ │ │ │ ├── vampire.anim.json │ │ │ │ ├── vampire.png │ │ │ │ ├── werebat.anim.json │ │ │ │ ├── werebat.png │ │ │ │ ├── white_dragon.anim.json │ │ │ │ ├── white_dragon.png │ │ │ │ ├── wight.anim.json │ │ │ │ ├── wight.png │ │ │ │ ├── wingeye.anim.json │ │ │ │ ├── wingeye.png │ │ │ │ ├── wyvern.anim.json │ │ │ │ ├── wyvern.png │ │ │ │ ├── zombie.anim.json │ │ │ │ └── zombie.png │ │ │ ├── enemy_ps4 │ │ │ │ ├── ps4_blue_scorpion.anim.json │ │ │ │ ├── ps4_blue_scorpion.png │ │ │ │ ├── ps4_scorpion.anim.json │ │ │ │ ├── ps4_scorpion.png │ │ │ │ ├── ps4_yellow_scorpion.anim.json │ │ │ │ └── ps4_yellow_scorpion.png │ │ │ ├── enemy_thunder.anim.json │ │ │ ├── enemy_thunder.png │ │ │ ├── pl_fire.anim.json │ │ │ ├── pl_fire.png │ │ │ ├── pl_gifire.anim.json │ │ │ ├── pl_gifire.png │ │ │ ├── pl_thunder.anim.json │ │ │ ├── pl_thunder.png │ │ │ ├── pl_wind.anim.json │ │ │ ├── pl_wind.png │ │ │ ├── weapon_ps1 │ │ │ │ ├── Axe.anim.json │ │ │ │ ├── Axe.png │ │ │ │ ├── Claw.anim.json │ │ │ │ ├── Claw.png │ │ │ │ ├── Fang.anim.json │ │ │ │ ├── Fang.png │ │ │ │ ├── Heat.anim.json │ │ │ │ ├── Heat.png │ │ │ │ ├── LacoAxe.anim.json │ │ │ │ ├── LacoAxe.png │ │ │ │ ├── LacoSword.anim.json │ │ │ │ ├── LacoSword.png │ │ │ │ ├── Laser.anim.json │ │ │ │ ├── Laser.png │ │ │ │ ├── Light.anim.json │ │ │ │ ├── Light.png │ │ │ │ ├── Needle.anim.json │ │ │ │ ├── Needle.png │ │ │ │ ├── Sword.anim.json │ │ │ │ └── Sword.png │ │ │ └── xeen │ │ │ │ ├── Beholder.anim.json │ │ │ │ ├── Beholder.png │ │ │ │ ├── Slug.anim.json │ │ │ │ └── Slug.png │ │ ├── chars │ │ │ ├── Alis.anim.json │ │ │ ├── Alis.png │ │ │ ├── Beggar.anim.json │ │ │ ├── Beggar.png │ │ │ ├── Boy1.anim.json │ │ │ ├── Boy1.png │ │ │ ├── Boy2.anim.json │ │ │ ├── Boy2.png │ │ │ ├── Coldman1.anim.json │ │ │ ├── Coldman1.png │ │ │ ├── Coldwmn1.anim.json │ │ │ ├── Coldwmn1.png │ │ │ ├── Coldwmn2.anim.json │ │ │ ├── Coldwmn2.png │ │ │ ├── Cultist1.anim.json │ │ │ ├── Cultist1.png │ │ │ ├── Cultist2.anim.json │ │ │ ├── Cultist2.png │ │ │ ├── Dancer.anim.json │ │ │ ├── Dancer.png │ │ │ ├── Dezo0.anim.json │ │ │ ├── Dezo0.png │ │ │ ├── Dezo1.anim.json │ │ │ ├── Dezo1.png │ │ │ ├── Dezo10.anim.json │ │ │ ├── Dezo10.png │ │ │ ├── Dezo2.anim.json │ │ │ ├── Dezo2.png │ │ │ ├── Dezo3.anim.json │ │ │ ├── Dezo3.png │ │ │ ├── Dezo4.anim.json │ │ │ ├── Dezo4.png │ │ │ ├── Dezo5.anim.json │ │ │ ├── Dezo5.png │ │ │ ├── Dezo6.anim.json │ │ │ ├── Dezo6.png │ │ │ ├── Dezo7.anim.json │ │ │ ├── Dezo7.png │ │ │ ├── Dezo8.anim.json │ │ │ ├── Dezo8.png │ │ │ ├── Dezo9.anim.json │ │ │ ├── Dezo9.png │ │ │ ├── Girl1.anim.json │ │ │ ├── Girl1.png │ │ │ ├── Girl2.anim.json │ │ │ ├── Girl2.png │ │ │ ├── Hover.anim.json │ │ │ ├── Hover.png │ │ │ ├── Hunter1.anim.json │ │ │ ├── Hunter1.png │ │ │ ├── Hunter2.anim.json │ │ │ ├── Hunter2.png │ │ │ ├── Hunter3.anim.json │ │ │ ├── Hunter3.png │ │ │ ├── IceDigger.anim.json │ │ │ ├── IceDigger.png │ │ │ ├── Landrover.anim.json │ │ │ ├── Landrover.png │ │ │ ├── Man1.anim.json │ │ │ ├── Man1.png │ │ │ ├── Man2.anim.json │ │ │ ├── Man2.png │ │ │ ├── Man3.anim.json │ │ │ ├── Man3.png │ │ │ ├── Man4.anim.json │ │ │ ├── Man4.png │ │ │ ├── Man5.anim.json │ │ │ ├── Man5.png │ │ │ ├── Man6.anim.json │ │ │ ├── Man6.png │ │ │ ├── Man7.anim.json │ │ │ ├── Man7.png │ │ │ ├── Mota0.anim.json │ │ │ ├── Mota0.png │ │ │ ├── Mota1.anim.json │ │ │ ├── Mota1.png │ │ │ ├── Mota2.anim.json │ │ │ ├── Mota2.png │ │ │ ├── Mota3.anim.json │ │ │ ├── Mota3.png │ │ │ ├── Mota4.anim.json │ │ │ ├── Mota4.png │ │ │ ├── Mota5.anim.json │ │ │ ├── Mota5.png │ │ │ ├── Mota6.anim.json │ │ │ ├── Mota6.png │ │ │ ├── Mota7.anim.json │ │ │ ├── Mota7.png │ │ │ ├── Mota8.anim.json │ │ │ ├── Mota8.png │ │ │ ├── Myau.anim.json │ │ │ ├── Myau.png │ │ │ ├── Noah.anim.json │ │ │ ├── Noah.png │ │ │ ├── Odin.anim.json │ │ │ ├── Odin.png │ │ │ ├── Oldman1.anim.json │ │ │ ├── Oldman1.png │ │ │ ├── Oldman2.anim.json │ │ │ ├── Oldman2.png │ │ │ ├── Oldwmn1.anim.json │ │ │ ├── Oldwmn1.png │ │ │ ├── Oldwmn2.anim.json │ │ │ ├── Oldwmn2.png │ │ │ ├── Scholar1.anim.json │ │ │ ├── Scholar1.png │ │ │ ├── Scholar2.anim.json │ │ │ ├── Scholar2.png │ │ │ ├── Scholar3.anim.json │ │ │ ├── Scholar3.png │ │ │ ├── Shopper.anim.json │ │ │ ├── Shopper.png │ │ │ ├── Tarzimal.anim.json │ │ │ ├── Tarzimal.png │ │ │ ├── Wmn1.anim.json │ │ │ ├── Wmn1.png │ │ │ ├── Wmn2.anim.json │ │ │ ├── Wmn2.png │ │ │ ├── Wmn3.anim.json │ │ │ ├── Wmn3.png │ │ │ ├── Wmn4.anim.json │ │ │ ├── Wmn4.png │ │ │ ├── Wmn5.anim.json │ │ │ ├── Wmn5.png │ │ │ ├── Wmn6.anim.json │ │ │ ├── Wmn6.png │ │ │ ├── Wmn7.anim.json │ │ │ ├── Wmn7.png │ │ │ ├── Worker.anim.json │ │ │ ├── Worker.png │ │ │ ├── mota_brown.anim.json │ │ │ ├── mota_brown.png │ │ │ ├── palman_esper1.anim.json │ │ │ ├── palman_esper1.png │ │ │ ├── palman_esper2.anim.json │ │ │ ├── palman_esper2.png │ │ │ ├── palman_esper3.anim.json │ │ │ ├── palman_esper3.png │ │ │ ├── palman_f_brown.anim.json │ │ │ └── palman_f_brown.png │ │ ├── config.json │ │ ├── dungeons │ │ │ ├── 3d.png │ │ │ ├── 3d.tiles.json │ │ │ ├── 3d.vsp │ │ │ ├── Abion_dungeon.java │ │ │ ├── Abion_dungeon.map │ │ │ ├── Abion_dungeon.map.json │ │ │ ├── Aukba_tunnel.java │ │ │ ├── Aukba_tunnel.map │ │ │ ├── Aukba_tunnel.map.json │ │ │ ├── Baya_cave.java │ │ │ ├── Baya_cave.map │ │ │ ├── Baya_cave.map.json │ │ │ ├── Baya_malay.java │ │ │ ├── Baya_malay.map │ │ │ ├── Baya_malay.map.json │ │ │ ├── Blueberry.java │ │ │ ├── Blueberry.map │ │ │ ├── Blueberry.map.json │ │ │ ├── Bortevo_cave.java │ │ │ ├── Bortevo_cave.map │ │ │ ├── Bortevo_cave.map.json │ │ │ ├── Casba_cave.java │ │ │ ├── Casba_cave.map │ │ │ ├── Casba_cave.map.json │ │ │ ├── Corona.java │ │ │ ├── Corona.map │ │ │ ├── Corona.map.json │ │ │ ├── Darkfalz.java │ │ │ ├── Darkfalz.map │ │ │ ├── Darkfalz.map.json │ │ │ ├── Dezo_cave1.java │ │ │ ├── Dezo_cave1.map │ │ │ ├── Dezo_cave1.map.json │ │ │ ├── Dezo_cave2.java │ │ │ ├── Dezo_cave2.map │ │ │ ├── Dezo_cave2.map.json │ │ │ ├── Dezo_cave3.java │ │ │ ├── Dezo_cave3.map │ │ │ ├── Dezo_cave3.map.json │ │ │ ├── Dezo_cave4.java │ │ │ ├── Dezo_cave4.map │ │ │ ├── Dezo_cave4.map.json │ │ │ ├── Dezo_cave_aukba.java │ │ │ ├── Dezo_cave_aukba.map │ │ │ ├── Dezo_cave_aukba.map.json │ │ │ ├── Drasgow_dungeon.java │ │ │ ├── Drasgow_dungeon.map │ │ │ ├── Drasgow_dungeon.map.json │ │ │ ├── Frost_cave.java │ │ │ ├── Frost_cave.map │ │ │ ├── Frost_cave.map.json │ │ │ ├── Gothic_passageway.java │ │ │ ├── Gothic_passageway.map │ │ │ ├── Gothic_passageway.map.json │ │ │ ├── Governor.java │ │ │ ├── Governor.map │ │ │ ├── Governor.map.json │ │ │ ├── Guaron_morgue.java │ │ │ ├── Guaron_morgue.map │ │ │ ├── Guaron_morgue.map.json │ │ │ ├── Iala.java │ │ │ ├── Iala.map │ │ │ ├── Iala.map.json │ │ │ ├── Lassic_castle.java │ │ │ ├── Lassic_castle.map │ │ │ ├── Lassic_castle.map.json │ │ │ ├── Lost_island.java │ │ │ ├── Lost_island.map │ │ │ ├── Lost_island.map.json │ │ │ ├── MapedPreferences.xml │ │ │ ├── Medusa_tower.java │ │ │ ├── Medusa_tower.map │ │ │ ├── Medusa_tower.map.json │ │ │ ├── Naharu.java │ │ │ ├── Naharu.map │ │ │ ├── Naharu.map.json │ │ │ ├── Naula.java │ │ │ ├── Naula.map │ │ │ ├── Naula.map.json │ │ │ ├── Odin_cave.java │ │ │ ├── Odin_cave.map │ │ │ ├── Odin_cave.map.json │ │ │ ├── Prism_cave.java │ │ │ ├── Prism_cave.map │ │ │ ├── Prism_cave.map.json │ │ │ ├── Prison.java │ │ │ ├── Prison.map │ │ │ ├── Prison.map.json │ │ │ ├── Skure_tunnel.java │ │ │ ├── Skure_tunnel.map │ │ │ ├── Skure_tunnel.map.json │ │ │ ├── Tajima_cave.java │ │ │ ├── Tajima_cave.map │ │ │ ├── Tajima_cave.map.json │ │ │ ├── Triada.java │ │ │ ├── Triada.map │ │ │ ├── Triada.map.json │ │ │ ├── Warehouse.java │ │ │ ├── Warehouse.map │ │ │ ├── Warehouse.map.json │ │ │ └── default.meta.png │ │ ├── images │ │ │ └── original │ │ │ │ ├── Ending.png │ │ │ │ ├── Title.png │ │ │ │ ├── chest.anim.json │ │ │ │ ├── chest.png │ │ │ │ ├── cine │ │ │ │ ├── S_Alis.png │ │ │ │ ├── S_Beast1.png │ │ │ │ ├── S_Beast2.png │ │ │ │ ├── S_Intro1.png │ │ │ │ ├── S_Intro2.png │ │ │ │ ├── S_Myau.png │ │ │ │ ├── S_Nero1.png │ │ │ │ ├── S_Nero2.png │ │ │ │ ├── S_Noah.png │ │ │ │ ├── S_Odin.png │ │ │ │ ├── S_Odin2.png │ │ │ │ └── S_Promise.png │ │ │ │ ├── credits │ │ │ │ ├── Credits1.png │ │ │ │ ├── Credits2.png │ │ │ │ ├── Credits3.png │ │ │ │ ├── Credits4.png │ │ │ │ └── Credits5.png │ │ │ │ ├── dungeon │ │ │ │ ├── Blue │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Cold │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Color │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Fire │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Green │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Grey │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Mota │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Orange │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── Ruby │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ └── Yellow │ │ │ │ │ ├── BACK1.PNG │ │ │ │ │ ├── BACK2.PNG │ │ │ │ │ ├── BACK3.PNG │ │ │ │ │ ├── BACK4.PNG │ │ │ │ │ ├── BACK5.PNG │ │ │ │ │ ├── BACK6.PNG │ │ │ │ │ ├── CORNER1.PNG │ │ │ │ │ ├── CORNER2.PNG │ │ │ │ │ ├── CORNER3.PNG │ │ │ │ │ ├── CORNER4.PNG │ │ │ │ │ ├── CURL1.PNG │ │ │ │ │ ├── CURL2.PNG │ │ │ │ │ ├── CURL3.PNG │ │ │ │ │ ├── CURL4.PNG │ │ │ │ │ ├── CURL5.PNG │ │ │ │ │ ├── CURL6.PNG │ │ │ │ │ ├── CURL7.PNG │ │ │ │ │ ├── CURVE1.PNG │ │ │ │ │ ├── CURVE2.PNG │ │ │ │ │ ├── CURVE3.PNG │ │ │ │ │ ├── CURVE4.PNG │ │ │ │ │ ├── DOOR1.PNG │ │ │ │ │ ├── DOOR2.PNG │ │ │ │ │ ├── DOOR3.PNG │ │ │ │ │ ├── DOOR4.PNG │ │ │ │ │ ├── DOOR5.PNG │ │ │ │ │ ├── DOOR6.PNG │ │ │ │ │ ├── DOOR7.PNG │ │ │ │ │ ├── DOORA1.PNG │ │ │ │ │ ├── DOORA2.PNG │ │ │ │ │ ├── DOORA3.PNG │ │ │ │ │ ├── DOORA4.PNG │ │ │ │ │ ├── DOORA5.PNG │ │ │ │ │ ├── DOORA6.PNG │ │ │ │ │ ├── DOORB1.PNG │ │ │ │ │ ├── DOORB2.PNG │ │ │ │ │ ├── DOORB3.PNG │ │ │ │ │ ├── DOORB4.PNG │ │ │ │ │ ├── DOORB5.PNG │ │ │ │ │ ├── DOORB6.PNG │ │ │ │ │ ├── DOORC1.PNG │ │ │ │ │ ├── DOORC2.PNG │ │ │ │ │ ├── DOORC3.PNG │ │ │ │ │ ├── DOORC4.PNG │ │ │ │ │ ├── DOORC5.PNG │ │ │ │ │ ├── DOORC6.PNG │ │ │ │ │ ├── ENCA1.PNG │ │ │ │ │ ├── ENCA2.PNG │ │ │ │ │ ├── ENCA3.PNG │ │ │ │ │ ├── ENCA4.PNG │ │ │ │ │ ├── ENCA5.PNG │ │ │ │ │ ├── ENCA6.PNG │ │ │ │ │ ├── ENCB1.PNG │ │ │ │ │ ├── ENCB2.PNG │ │ │ │ │ ├── ENCB3.PNG │ │ │ │ │ ├── ENCB4.PNG │ │ │ │ │ ├── ENCB5.PNG │ │ │ │ │ ├── ENCB6.PNG │ │ │ │ │ ├── ENCC1.PNG │ │ │ │ │ ├── ENCC2.PNG │ │ │ │ │ ├── ENCC3.PNG │ │ │ │ │ ├── ENCC4.PNG │ │ │ │ │ ├── ENCC5.PNG │ │ │ │ │ ├── ENCC6.PNG │ │ │ │ │ ├── ENDA1.PNG │ │ │ │ │ ├── ENDA2.PNG │ │ │ │ │ ├── ENDA3.PNG │ │ │ │ │ ├── ENDA4.PNG │ │ │ │ │ ├── ENDA5.PNG │ │ │ │ │ ├── ENDA6.PNG │ │ │ │ │ ├── ENDB1.PNG │ │ │ │ │ ├── ENDB2.PNG │ │ │ │ │ ├── ENDB3.PNG │ │ │ │ │ ├── ENDB4.PNG │ │ │ │ │ ├── ENDB5.PNG │ │ │ │ │ ├── ENDB6.PNG │ │ │ │ │ ├── ENDC1.PNG │ │ │ │ │ ├── ENDC2.PNG │ │ │ │ │ ├── ENDC3.PNG │ │ │ │ │ ├── ENDC4.PNG │ │ │ │ │ ├── ENDC5.PNG │ │ │ │ │ ├── ENDC6.PNG │ │ │ │ │ ├── LENA1.PNG │ │ │ │ │ ├── LENA2.PNG │ │ │ │ │ ├── LENA3.PNG │ │ │ │ │ ├── LENA4.PNG │ │ │ │ │ ├── LENA5.PNG │ │ │ │ │ ├── LENA6.PNG │ │ │ │ │ ├── LENB1.PNG │ │ │ │ │ ├── LENB2.PNG │ │ │ │ │ ├── LENB3.PNG │ │ │ │ │ ├── LENB4.PNG │ │ │ │ │ ├── LENB5.PNG │ │ │ │ │ ├── LENB6.PNG │ │ │ │ │ ├── LENC1.PNG │ │ │ │ │ ├── LENC2.PNG │ │ │ │ │ ├── LENC3.PNG │ │ │ │ │ ├── LENC4.PNG │ │ │ │ │ ├── LENC5.PNG │ │ │ │ │ ├── LENC6.PNG │ │ │ │ │ ├── ROOM.PNG │ │ │ │ │ ├── STAIRSDN.PNG │ │ │ │ │ ├── STAIRSUP.PNG │ │ │ │ │ ├── WALL.PNG │ │ │ │ │ ├── WALL1.PNG │ │ │ │ │ ├── WALL2.PNG │ │ │ │ │ ├── WALLA1.PNG │ │ │ │ │ ├── WALLA2.PNG │ │ │ │ │ ├── WALLA3.PNG │ │ │ │ │ ├── WALLA4.PNG │ │ │ │ │ ├── WALLA5.PNG │ │ │ │ │ ├── WALLA6.PNG │ │ │ │ │ ├── WALLB1.PNG │ │ │ │ │ ├── WALLB2.PNG │ │ │ │ │ ├── WALLB3.PNG │ │ │ │ │ ├── WALLB4.PNG │ │ │ │ │ ├── WALLB5.PNG │ │ │ │ │ ├── WALLB6.PNG │ │ │ │ │ ├── WALLC1.PNG │ │ │ │ │ ├── WALLC2.PNG │ │ │ │ │ └── WALLC3.PNG │ │ │ │ ├── entities.anim.json │ │ │ │ ├── entities.png │ │ │ │ ├── lentities.anim.json │ │ │ │ ├── lentities.png │ │ │ │ ├── myau_flapping.anim.json │ │ │ │ ├── myau_flapping.png │ │ │ │ ├── odin_stone.anim.json │ │ │ │ ├── odin_stone.png │ │ │ │ ├── portraits │ │ │ │ ├── Alis.png │ │ │ │ ├── Myau.png │ │ │ │ ├── Noah.png │ │ │ │ ├── Odin.png │ │ │ │ ├── S_Alis.png │ │ │ │ ├── S_Myau.png │ │ │ │ ├── S_Noah.png │ │ │ │ └── S_Odin.png │ │ │ │ ├── scene │ │ │ │ ├── Beach.anim.json │ │ │ │ ├── Beach.png │ │ │ │ ├── C_Altar.png │ │ │ │ ├── C_Artic.png │ │ │ │ ├── C_Baya.png │ │ │ │ ├── C_Cave.png │ │ │ │ ├── C_Church1.png │ │ │ │ ├── C_Church2.png │ │ │ │ ├── C_Desert.png │ │ │ │ ├── C_Fields.png │ │ │ │ ├── C_Food1.png │ │ │ │ ├── C_Food2.png │ │ │ │ ├── C_Forest.png │ │ │ │ ├── C_Hand1.png │ │ │ │ ├── C_Hand2.png │ │ │ │ ├── C_Hosp1.png │ │ │ │ ├── C_Hosp2.png │ │ │ │ ├── C_House1.png │ │ │ │ ├── C_House2.png │ │ │ │ ├── C_Palace.png │ │ │ │ ├── C_Pines.png │ │ │ │ ├── C_Ruined.png │ │ │ │ ├── C_Sky.png │ │ │ │ ├── C_Space.png │ │ │ │ ├── C_Town.png │ │ │ │ ├── C_Villa.png │ │ │ │ ├── C_Weap1.png │ │ │ │ ├── C_Weap2.png │ │ │ │ ├── Gas.anim.json │ │ │ │ ├── Gas.png │ │ │ │ ├── Lava.anim.json │ │ │ │ ├── Lava.png │ │ │ │ ├── Sea.anim.json │ │ │ │ └── Sea.png │ │ │ │ ├── sky_castle.anim.json │ │ │ │ └── sky_castle.png │ │ ├── lang │ │ │ ├── Script_de.properties │ │ │ ├── Script_en.properties │ │ │ ├── Script_fr.properties │ │ │ ├── Script_pt.properties │ │ │ ├── Script_se.properties │ │ │ └── Script_tt.properties │ │ ├── maps │ │ │ ├── Abion.java │ │ │ ├── Abion.map │ │ │ ├── Abion.map.json │ │ │ ├── Aukba.java │ │ │ ├── Aukba.map │ │ │ ├── Aukba.map.json │ │ │ ├── Aukba_entrance.java │ │ │ ├── Aukba_entrance.map │ │ │ ├── Aukba_entrance.map.json │ │ │ ├── Bortevo.java │ │ │ ├── Bortevo.map │ │ │ ├── Bortevo.map.json │ │ │ ├── Camineet.java │ │ │ ├── Camineet.map │ │ │ ├── Camineet.map.json │ │ │ ├── Casba.java │ │ │ ├── Casba.map │ │ │ ├── Casba.map.json │ │ │ ├── Dezoris.java │ │ │ ├── Dezoris.map │ │ │ ├── Dezoris.map.json │ │ │ ├── Drasgow.java │ │ │ ├── Drasgow.map │ │ │ ├── Drasgow.map.json │ │ │ ├── Eppi.java │ │ │ ├── Eppi.map │ │ │ ├── Eppi.map.json │ │ │ ├── Gothic.java │ │ │ ├── Gothic.map │ │ │ ├── Gothic.map.json │ │ │ ├── Loar.java │ │ │ ├── Loar.map │ │ │ ├── Loar.map.json │ │ │ ├── MapedPreferences.xml │ │ │ ├── Motavia.java │ │ │ ├── Motavia.map │ │ │ ├── Motavia.map.json │ │ │ ├── PS1.VSP │ │ │ ├── PS1.png │ │ │ ├── PS1.tiles.json │ │ │ ├── Palma.java │ │ │ ├── Palma.map │ │ │ ├── Palma.map.json │ │ │ ├── Parolit.java │ │ │ ├── Parolit.map │ │ │ ├── Parolit.map.json │ │ │ ├── Paseo.java │ │ │ ├── Paseo.map │ │ │ ├── Paseo.map.json │ │ │ ├── Scion.java │ │ │ ├── Scion.map │ │ │ ├── Scion.map.json │ │ │ ├── Skure.java │ │ │ ├── Skure.map │ │ │ ├── Skure.map.json │ │ │ ├── Skure_entrance.java │ │ │ ├── Skure_entrance.map │ │ │ ├── Skure_entrance.map.json │ │ │ ├── Sky_castle.java │ │ │ ├── Sky_castle.map │ │ │ ├── Sky_castle.map.json │ │ │ ├── Sopia.java │ │ │ ├── Sopia.map │ │ │ ├── Sopia.map.json │ │ │ ├── Spaceport1.java │ │ │ ├── Spaceport1.map │ │ │ ├── Spaceport1.map.json │ │ │ ├── Spaceport2.java │ │ │ ├── Spaceport2.map │ │ │ ├── Spaceport2.map.json │ │ │ ├── Tonoe.java │ │ │ ├── Tonoe.map │ │ │ ├── Tonoe.map.json │ │ │ ├── Uzo.java │ │ │ ├── Uzo.map │ │ │ ├── Uzo.map.json │ │ │ └── default.meta.png │ │ ├── music │ │ │ ├── Battle.vgz │ │ │ ├── Cave.vgz │ │ │ ├── Church.vgz │ │ │ ├── DarkFalz.vgz │ │ │ ├── Dezoris.vgz │ │ │ ├── Dungeon.vgz │ │ │ ├── Ending.vgz │ │ │ ├── GameOver.vgz │ │ │ ├── Intro.vgz │ │ │ ├── Lassic.vgz │ │ │ ├── Motavia.vgz │ │ │ ├── Palma.vgz │ │ │ ├── Shop.vgz │ │ │ ├── Story.vgz │ │ │ ├── Title.vgz │ │ │ ├── Tower.vgz │ │ │ ├── Town.vgz │ │ │ ├── Vehicle.vgz │ │ │ └── Village.vgz │ │ ├── oo │ │ │ ├── BattlePosition.java │ │ │ ├── Battler.java │ │ │ ├── City.java │ │ │ ├── Dungeon.java │ │ │ ├── Enemy.java │ │ │ ├── EnemyBattler.java │ │ │ ├── GameData.java │ │ │ ├── Item.java │ │ │ ├── Job.java │ │ │ ├── PSBattle.java │ │ │ ├── PSEffect.java │ │ │ ├── PSGame.java │ │ │ ├── PSLibCHR.java │ │ │ ├── PSLibEnemy.java │ │ │ ├── PSLibImage.java │ │ │ ├── PSLibItem.java │ │ │ ├── PSLibMusic.java │ │ │ ├── PSLibSound.java │ │ │ ├── PSLibSpell.java │ │ │ ├── PSMenu.java │ │ │ ├── PSMenuMain.java │ │ │ ├── PSMenuShop.java │ │ │ ├── Party.java │ │ │ ├── PartyCreator.java │ │ │ ├── PartyMember.java │ │ │ ├── Specie.java │ │ │ └── menuGUI │ │ │ │ ├── MenuCHR.java │ │ │ │ ├── MenuImageBox.java │ │ │ │ ├── MenuLabelBox.java │ │ │ │ ├── MenuPromptBox.java │ │ │ │ ├── MenuScrollerText.java │ │ │ │ ├── MenuStack.java │ │ │ │ ├── MenuTextBox.java │ │ │ │ ├── MenuType.java │ │ │ │ └── Next_Icon.png │ │ ├── smallfont.gif │ │ ├── sound │ │ │ ├── a0_rest.wav │ │ │ ├── a1_rope.wav │ │ │ ├── a2_pl_atk.wav │ │ │ ├── a3_laco_fail.wav │ │ │ ├── a4_laco_dmg.wav │ │ │ ├── a5_laser_gun.wav │ │ │ ├── a6_fire.wav │ │ │ ├── a7_heat_gun.wav │ │ │ ├── a9_thunder.wav │ │ │ ├── aa_wind.wav │ │ │ ├── ab_spell.wav │ │ │ ├── ac_tele.wav │ │ │ ├── ad_en_dmg.wav │ │ │ ├── ae_pl_dmg.wav │ │ │ ├── af_en_dead.wav │ │ │ ├── b0_chest.wav │ │ │ ├── b1_explosion.wav │ │ │ ├── b2_arrow.wav │ │ │ ├── b3_item.wav │ │ │ ├── b4_landrov.wav │ │ │ ├── b5_hover.wav │ │ │ ├── b6_tchac.wav │ │ │ ├── b8_spaceship.wav │ │ │ ├── b9_broken.wav │ │ │ ├── ba_levelup.wav │ │ │ ├── bb_miss.wav │ │ │ ├── bc_escape.wav │ │ │ ├── bd_door.wav │ │ │ ├── be_beep.wav │ │ │ ├── bf_fly.wav │ │ │ ├── c0_fall_trap.wav │ │ │ ├── c1_heal.wav │ │ │ ├── c2_flute.wav │ │ │ ├── c3_stairs.wav │ │ │ ├── c4_stairs.wav │ │ │ ├── c5_revive.wav │ │ │ ├── c6_en_shot.wav │ │ │ ├── c7_en_jump.wav │ │ │ ├── c8_en_splash.wav │ │ │ ├── c9_en_buzz.wav │ │ │ ├── c9_en_short_buzz.wav │ │ │ ├── ca_en_breath.wav │ │ │ ├── cb_en_sweep.wav │ │ │ ├── cc_en_punch.wav │ │ │ ├── cd_light.wav │ │ │ ├── ce_en_minishot.wav │ │ │ ├── cf_en_drain.wav │ │ │ └── menu.wav │ │ └── space │ │ │ ├── Dezo.anim.json │ │ │ ├── Dezo.png │ │ │ ├── Mota.anim.json │ │ │ ├── Mota.png │ │ │ ├── Palma.anim.json │ │ │ ├── Palma.png │ │ │ ├── Space.java │ │ │ ├── Space.map │ │ │ ├── Space.map.json │ │ │ ├── Space.png │ │ │ ├── Space.tiles.json │ │ │ ├── Space.vsp │ │ │ ├── Spaceship1.anim.json │ │ │ ├── Spaceship1.png │ │ │ ├── Spaceship2.anim.json │ │ │ └── Spaceship2.png │ └── xeen │ │ ├── 2018_darkside.map.json │ │ ├── 2018_darkside.png │ │ ├── 2018_darkside.tiles.json │ │ └── default.meta.png ├── domain │ ├── CHR.java │ ├── Config.java │ ├── Entity.java │ ├── EntityImpl.java │ ├── Map.java │ ├── MapAbstract.java │ ├── MapTiledJSON.java │ ├── Tileset.java │ ├── VFont.java │ ├── VImage.java │ ├── VSound.java │ └── ZoneProperties.java ├── log4j2.xml ├── persist │ ├── PCXReader.java │ └── SimulatedRandomAccessFile.java └── util │ ├── AutoTiling.java │ ├── MapProcess.java │ └── Point.java └── test └── demos └── ps ├── AlisQuestTest.java ├── BattleTest.java ├── NoSimulationTest.java ├── OdinQuestTest.java ├── PSMenuShopTest.java ├── PartyMemberTest.java └── oo └── BattlerTest.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /target/ 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/pom.xml -------------------------------------------------------------------------------- /redist/Ak.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/redist/Ak.jar -------------------------------------------------------------------------------- /redist/Demo1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/redist/Demo1.jar -------------------------------------------------------------------------------- /redist/Demo2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/redist/Demo2.jar -------------------------------------------------------------------------------- /redist/Phantasy.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/redist/Phantasy.jar -------------------------------------------------------------------------------- /screenshots/Ak_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Ak_1.png -------------------------------------------------------------------------------- /screenshots/Ak_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Ak_2.png -------------------------------------------------------------------------------- /screenshots/Ak_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Ak_3.png -------------------------------------------------------------------------------- /screenshots/JLud2D_Island.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/JLud2D_Island.png -------------------------------------------------------------------------------- /screenshots/JLud2d_Warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/JLud2d_Warrior.png -------------------------------------------------------------------------------- /screenshots/PSG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/PSG1.png -------------------------------------------------------------------------------- /screenshots/PSG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/PSG2.png -------------------------------------------------------------------------------- /screenshots/PS_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/PS_1.png -------------------------------------------------------------------------------- /screenshots/PS_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/PS_2.png -------------------------------------------------------------------------------- /screenshots/PS_Battle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/PS_Battle3.png -------------------------------------------------------------------------------- /screenshots/PS_Dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/PS_Dungeon.png -------------------------------------------------------------------------------- /screenshots/Sully_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Sully_1.png -------------------------------------------------------------------------------- /screenshots/Sully_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Sully_2.png -------------------------------------------------------------------------------- /screenshots/Sully_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Sully_3.png -------------------------------------------------------------------------------- /screenshots/Sully_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Sully_4.png -------------------------------------------------------------------------------- /screenshots/Sully_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/screenshots/Sully_5.png -------------------------------------------------------------------------------- /src/audio/MidiPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/MidiPlayer.java -------------------------------------------------------------------------------- /src/audio/Mp3Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/Mp3Player.java -------------------------------------------------------------------------------- /src/audio/VMusic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/VMusic.java -------------------------------------------------------------------------------- /src/audio/WavPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/WavPlayer.java -------------------------------------------------------------------------------- /src/audio/gme/BlipBuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/BlipBuffer.java -------------------------------------------------------------------------------- /src/audio/gme/ClassicEmu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/ClassicEmu.java -------------------------------------------------------------------------------- /src/audio/gme/DataReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/DataReader.java -------------------------------------------------------------------------------- /src/audio/gme/GbApu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/GbApu.java -------------------------------------------------------------------------------- /src/audio/gme/GbCpu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/GbCpu.java -------------------------------------------------------------------------------- /src/audio/gme/GbsEmu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/GbsEmu.java -------------------------------------------------------------------------------- /src/audio/gme/MemPager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/MemPager.java -------------------------------------------------------------------------------- /src/audio/gme/MusicEmu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/MusicEmu.java -------------------------------------------------------------------------------- /src/audio/gme/NesApu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/NesApu.java -------------------------------------------------------------------------------- /src/audio/gme/NesCpu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/NesCpu.java -------------------------------------------------------------------------------- /src/audio/gme/NsfEmu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/NsfEmu.java -------------------------------------------------------------------------------- /src/audio/gme/SmsApu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/SmsApu.java -------------------------------------------------------------------------------- /src/audio/gme/SpcCpu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/SpcCpu.java -------------------------------------------------------------------------------- /src/audio/gme/SpcDsp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/SpcDsp.java -------------------------------------------------------------------------------- /src/audio/gme/SpcEmu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/SpcEmu.java -------------------------------------------------------------------------------- /src/audio/gme/VGMPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/VGMPlayer.java -------------------------------------------------------------------------------- /src/audio/gme/VgmEmu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/VgmEmu.java -------------------------------------------------------------------------------- /src/audio/gme/YM2612.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/YM2612.java -------------------------------------------------------------------------------- /src/audio/gme/gme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/gme/gme.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/converter/Converter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/converter/Converter.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/converter/RiffFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/converter/RiffFile.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/converter/WaveFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/converter/WaveFile.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/converter/jlc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/converter/jlc.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/BitReserve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/BitReserve.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Bitstream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Bitstream.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Control.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Control.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Crc16.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Crc16.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Decoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Decoder.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Equalizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Equalizer.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Header.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Header.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Manager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Manager.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Obuffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Obuffer.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/Source.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/Source.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/au2lin.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/au2lin.ser -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/huffcodetab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/huffcodetab.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/l3reorder.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/l3reorder.ser -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/lin2au.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/lin2au.ser -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/readme.txt -------------------------------------------------------------------------------- /src/audio/javazoom/jl/decoder/sfd.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/decoder/sfd.ser -------------------------------------------------------------------------------- /src/audio/javazoom/jl/player/AudioDevice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/player/AudioDevice.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/player/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/player/Player.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/player/PlayerApplet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/player/PlayerApplet.java -------------------------------------------------------------------------------- /src/audio/javazoom/jl/player/jlp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/javazoom/jl/player/jlp.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikCvtApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikCvtApp.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/AUDTMP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/AUDTMP.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/ENVPR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/ENVPR.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/ENVPT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/ENVPT.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/INSTRUMENT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/INSTRUMENT.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/MMIO/MMIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/MMIO/MMIO.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/Makefile -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/SAMPLE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/SAMPLE.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/TODO -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/UI/myUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/UI/myUI.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/UNIMOD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/UNIMOD.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/VINFO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/VINFO.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/Virtch/clVirtch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/Virtch/clVirtch.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clDRIVER.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clDRIVER.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clDisplayBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clDisplayBase.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clLOADER.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clLOADER.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clMDriverBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clMDriverBase.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clMain.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clMainBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clMainBase.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/clMikCvtMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/clMikCvtMain.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikMod/curmod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikMod/curmod.java -------------------------------------------------------------------------------- /src/audio/jmikmod/MikModApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/audio/jmikmod/MikModApp.java -------------------------------------------------------------------------------- /src/core/Controls.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/core/Controls.java -------------------------------------------------------------------------------- /src/core/DefaultPalette.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/core/DefaultPalette.java -------------------------------------------------------------------------------- /src/core/GUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/core/GUI.java -------------------------------------------------------------------------------- /src/core/MainEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/core/MainEngine.java -------------------------------------------------------------------------------- /src/core/Script.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/core/Script.java -------------------------------------------------------------------------------- /src/demos/ak/AK.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/AK.java -------------------------------------------------------------------------------- /src/demos/ak/Ak.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/Ak.anim.json -------------------------------------------------------------------------------- /src/demos/ak/Ak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/Ak.png -------------------------------------------------------------------------------- /src/demos/ak/Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/Big.png -------------------------------------------------------------------------------- /src/demos/ak/akidd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/akidd.png -------------------------------------------------------------------------------- /src/demos/ak/akidd.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/akidd.tiles.json -------------------------------------------------------------------------------- /src/demos/ak/akidd.vsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/akidd.vsp -------------------------------------------------------------------------------- /src/demos/ak/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/config.json -------------------------------------------------------------------------------- /src/demos/ak/default.meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/default.meta.png -------------------------------------------------------------------------------- /src/demos/ak/level01.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level01.map.json -------------------------------------------------------------------------------- /src/demos/ak/level02.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level02.map.json -------------------------------------------------------------------------------- /src/demos/ak/level03.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level03.map.json -------------------------------------------------------------------------------- /src/demos/ak/level04.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level04.map.json -------------------------------------------------------------------------------- /src/demos/ak/level05.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level05.map.json -------------------------------------------------------------------------------- /src/demos/ak/level06.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level06.map.json -------------------------------------------------------------------------------- /src/demos/ak/level07.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level07.map.json -------------------------------------------------------------------------------- /src/demos/ak/level08.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level08.map.json -------------------------------------------------------------------------------- /src/demos/ak/level09.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level09.map.json -------------------------------------------------------------------------------- /src/demos/ak/level10.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level10.map.json -------------------------------------------------------------------------------- /src/demos/ak/level11.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level11.map.json -------------------------------------------------------------------------------- /src/demos/ak/level12.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level12.map.json -------------------------------------------------------------------------------- /src/demos/ak/level13.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level13.map.json -------------------------------------------------------------------------------- /src/demos/ak/level14.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level14.map.json -------------------------------------------------------------------------------- /src/demos/ak/level15.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level15.map.json -------------------------------------------------------------------------------- /src/demos/ak/level16.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level16.map.json -------------------------------------------------------------------------------- /src/demos/ak/level17.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level17.map.json -------------------------------------------------------------------------------- /src/demos/ak/level18.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level18.map.json -------------------------------------------------------------------------------- /src/demos/ak/level19.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level19.map.json -------------------------------------------------------------------------------- /src/demos/ak/level20.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level20.map.json -------------------------------------------------------------------------------- /src/demos/ak/level21.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level21.map.json -------------------------------------------------------------------------------- /src/demos/ak/level22.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level22.map.json -------------------------------------------------------------------------------- /src/demos/ak/level30.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/level30.map.json -------------------------------------------------------------------------------- /src/demos/ak/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/monster.png -------------------------------------------------------------------------------- /src/demos/ak/res/image/Rock_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/Rock_c.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/Rock_g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/Rock_g.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/Rock_t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/Rock_t.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/Title.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/Title.PNG -------------------------------------------------------------------------------- /src/demos/ak/res/image/brac0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/brac0.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/brac1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/brac1.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/firing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/firing.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/leaf.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/shopkeep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/shopkeep.png -------------------------------------------------------------------------------- /src/demos/ak/res/image/smallfont.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/smallfont.gif -------------------------------------------------------------------------------- /src/demos/ak/res/image/world.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/image/world.gif -------------------------------------------------------------------------------- /src/demos/ak/res/music/field.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/music/field.vgm -------------------------------------------------------------------------------- /src/demos/ak/res/music/field.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/music/field.vgz -------------------------------------------------------------------------------- /src/demos/ak/res/music/intro.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/music/intro.vgz -------------------------------------------------------------------------------- /src/demos/ak/res/music/moto.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/music/moto.vgz -------------------------------------------------------------------------------- /src/demos/ak/res/music/swim.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/music/swim.vgm -------------------------------------------------------------------------------- /src/demos/ak/res/music/swim.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/music/swim.vgz -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Brac.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Brac.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Death.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Death.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Gold.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Gold.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Hit.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Item.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Item.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Mapa.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Mapa.mp3 -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Punch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Punch.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Rock.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Rock.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Star.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Star.wav -------------------------------------------------------------------------------- /src/demos/ak/res/sound/Water.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ak/res/sound/Water.wav -------------------------------------------------------------------------------- /src/demos/demo1/Demo1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/Demo1.java -------------------------------------------------------------------------------- /src/demos/demo1/Fortress.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/Fortress.s3m -------------------------------------------------------------------------------- /src/demos/demo1/beach_tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/beach_tileset.json -------------------------------------------------------------------------------- /src/demos/demo1/beach_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/beach_tileset.png -------------------------------------------------------------------------------- /src/demos/demo1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/config.json -------------------------------------------------------------------------------- /src/demos/demo1/default.meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/default.meta.png -------------------------------------------------------------------------------- /src/demos/demo1/island.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/island.map.json -------------------------------------------------------------------------------- /src/demos/demo1/maxim.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/maxim.anim.json -------------------------------------------------------------------------------- /src/demos/demo1/maxim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/maxim.png -------------------------------------------------------------------------------- /src/demos/demo1/xOrc_Male1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/xOrc_Male1.anim.json -------------------------------------------------------------------------------- /src/demos/demo1/xOrc_Male1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo1/xOrc_Male1.png -------------------------------------------------------------------------------- /src/demos/demo2/Demo2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/Demo2.java -------------------------------------------------------------------------------- /src/demos/demo2/Fortress.s3m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/Fortress.s3m -------------------------------------------------------------------------------- /src/demos/demo2/axe swing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/axe swing.wav -------------------------------------------------------------------------------- /src/demos/demo2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/config.json -------------------------------------------------------------------------------- /src/demos/demo2/default.meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/default.meta.png -------------------------------------------------------------------------------- /src/demos/demo2/goldw.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/goldw.map.json -------------------------------------------------------------------------------- /src/demos/demo2/goldw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/goldw.png -------------------------------------------------------------------------------- /src/demos/demo2/goldw.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/goldw.tiles.json -------------------------------------------------------------------------------- /src/demos/demo2/warrior.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/warrior.anim.json -------------------------------------------------------------------------------- /src/demos/demo2/warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/demo2/warrior.png -------------------------------------------------------------------------------- /src/demos/ps/CITY.MOD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/CITY.MOD -------------------------------------------------------------------------------- /src/demos/ps/MapedPreferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/MapedPreferences.xml -------------------------------------------------------------------------------- /src/demos/ps/PSDungeon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/PSDungeon.java -------------------------------------------------------------------------------- /src/demos/ps/Phantasy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Phantasy.java -------------------------------------------------------------------------------- /src/demos/ps/PhantasyArena.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/PhantasyArena.java -------------------------------------------------------------------------------- /src/demos/ps/Title.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Title.java -------------------------------------------------------------------------------- /src/demos/ps/Title.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Title.map -------------------------------------------------------------------------------- /src/demos/ps/Title.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Title.map.json -------------------------------------------------------------------------------- /src/demos/ps/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Title.png -------------------------------------------------------------------------------- /src/demos/ps/Title.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Title.tiles.json -------------------------------------------------------------------------------- /src/demos/ps/Title.vsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/Title.vsp -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_fire.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_fire.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_fire.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/cyclop.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/cyclop.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/cyclop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/cyclop.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/death_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/death_knight.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/dezo_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/dezo_alt.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/gaia.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/gaia.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/gaia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/gaia.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/giantspider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/giantspider.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/gold_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/gold_club.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/mota_shooter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/mota_shooter.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/nanocop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/nanocop.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/oliphant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/oliphant.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/poisonplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/poisonplant.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/revenant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/revenant.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/snow_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/snow_lion.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/storm_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/storm_fly.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/vampire_lord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/vampire_lord.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/wizard.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/wizard.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_new/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_new/wizard.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/ammonite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/ammonite.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/amundsen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/amundsen.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/androcop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/androcop.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/ant_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/ant_lion.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/barbarian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/barbarian.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/batalion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/batalion.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/bigclub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/bigclub.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/blue_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/blue_dragon.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/blueslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/blueslime.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/centaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/centaur.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/crawler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/crawler.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/darkfalz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/darkfalz.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/deadtree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/deadtree.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/dezorian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/dezorian.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/dr_mad.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/dr_mad.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/dr_mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/dr_mad.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/efarmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/efarmer.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/elephant.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/evildead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/evildead.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/evilhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/evilhead.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/executer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/executer.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/fishman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/fishman.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/frostman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/frostman.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/ghoul.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/ghoul.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/ghoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/ghoul.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/giant.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/giant.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/giant.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/giantfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/giantfly.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/goldlens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/goldlens.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/golem.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/golem.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/golem.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/green_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/green_dragon.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/greenslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/greenslime.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/gscorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/gscorpion.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/horseman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/horseman.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/lassic.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/lassic.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/lassic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/lassic.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/leech.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/leech.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/leech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/leech.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/lich.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/lich.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/lich.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/magician.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/magician.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/mammoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/mammoth.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/maneater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/maneater.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/manticore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/manticore.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/marauder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/marauder.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/marshman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/marshman.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/medusa.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/medusa.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/medusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/medusa.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/nessie.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/nessie.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/nessie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/nessie.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/nfarmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/nfarmer.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/octopus.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/owlbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/owlbear.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/reaper.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/reaper.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/reaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/reaper.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/red_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/red_dragon.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/redslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/redslime.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/robotcop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/robotcop.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/saccubus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/saccubus.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/sandworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/sandworm.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/scorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/scorpion.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/scorpius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/scorpius.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/serpent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/serpent.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/shadow.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/shadow.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/shadow.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/shelfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/shelfish.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/skeleton.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/skullen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/skullen.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/sorcerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/sorcerer.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/sphinx.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/sphinx.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/sphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/sphinx.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/stalker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/stalker.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/sworm.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/sworm.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/sworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/sworm.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/tarantul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/tarantul.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/tarzimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/tarzimal.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/tentacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/tentacle.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/titan.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/titan.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/titan.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/vampire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/vampire.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/werebat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/werebat.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/white_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/white_dragon.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/wight.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/wight.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/wight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/wight.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/wingeye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/wingeye.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/wyvern.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/wyvern.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/wyvern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/wyvern.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/zombie.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/zombie.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps1/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps1/zombie.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_ps4/ps4_scorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_ps4/ps4_scorpion.png -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_thunder.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_thunder.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/enemy_thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/enemy_thunder.png -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_fire.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_fire.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_fire.png -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_gifire.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_gifire.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_gifire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_gifire.png -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_thunder.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_thunder.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_thunder.png -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_wind.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_wind.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/pl_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/pl_wind.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Axe.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Axe.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Axe.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Claw.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Claw.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Claw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Claw.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Fang.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Fang.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Fang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Fang.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Heat.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Heat.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Heat.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/LacoAxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/LacoAxe.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/LacoSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/LacoSword.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Laser.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Laser.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Laser.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Light.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Light.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Light.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Needle.png -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Sword.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Sword.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/weapon_ps1/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/weapon_ps1/Sword.png -------------------------------------------------------------------------------- /src/demos/ps/battle/xeen/Beholder.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/xeen/Beholder.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/xeen/Beholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/xeen/Beholder.png -------------------------------------------------------------------------------- /src/demos/ps/battle/xeen/Slug.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/xeen/Slug.anim.json -------------------------------------------------------------------------------- /src/demos/ps/battle/xeen/Slug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/battle/xeen/Slug.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Alis.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Alis.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Alis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Alis.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Beggar.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Beggar.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Beggar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Beggar.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Boy1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Boy1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Boy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Boy1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Boy2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Boy2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Boy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Boy2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Coldman1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Coldman1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Coldman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Coldman1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Coldwmn1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Coldwmn1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Coldwmn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Coldwmn1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Coldwmn2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Coldwmn2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Coldwmn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Coldwmn2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Cultist1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Cultist1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Cultist1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Cultist1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Cultist2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Cultist2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Cultist2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Cultist2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dancer.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dancer.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dancer.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo0.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo0.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo0.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo10.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo10.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo10.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo4.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo4.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo4.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo5.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo5.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo5.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo6.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo6.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo6.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo7.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo7.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo7.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo8.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo8.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo8.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo9.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo9.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Dezo9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Dezo9.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Girl1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Girl1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Girl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Girl1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Girl2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Girl2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Girl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Girl2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Hover.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hover.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hover.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Hunter1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hunter1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Hunter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hunter1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Hunter2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hunter2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Hunter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hunter2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Hunter3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hunter3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Hunter3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Hunter3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/IceDigger.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/IceDigger.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/IceDigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/IceDigger.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Landrover.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Landrover.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Landrover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Landrover.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man4.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man4.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man4.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man5.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man5.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man5.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man6.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man6.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man6.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Man7.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man7.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Man7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Man7.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota0.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota0.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota0.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota4.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota4.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota4.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota5.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota5.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota5.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota6.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota6.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota6.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota7.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota7.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota7.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota8.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota8.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Mota8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Mota8.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Myau.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Myau.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Myau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Myau.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Noah.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Noah.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Noah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Noah.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Odin.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Odin.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Odin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Odin.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldman1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldman1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldman1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldman1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldman2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldman2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldman2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldman2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldwmn1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldwmn1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldwmn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldwmn1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldwmn2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldwmn2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Oldwmn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Oldwmn2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Scholar1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Scholar1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Scholar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Scholar1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Scholar2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Scholar2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Scholar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Scholar2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Scholar3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Scholar3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Scholar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Scholar3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Shopper.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Shopper.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Shopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Shopper.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Tarzimal.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Tarzimal.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Tarzimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Tarzimal.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn4.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn4.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn4.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn5.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn5.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn5.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn6.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn6.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn6.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn7.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn7.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Wmn7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Wmn7.png -------------------------------------------------------------------------------- /src/demos/ps/chars/Worker.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Worker.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/Worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/Worker.png -------------------------------------------------------------------------------- /src/demos/ps/chars/mota_brown.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/mota_brown.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/mota_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/mota_brown.png -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_esper1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_esper1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_esper1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_esper1.png -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_esper2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_esper2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_esper2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_esper2.png -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_esper3.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_esper3.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_esper3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_esper3.png -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_f_brown.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_f_brown.anim.json -------------------------------------------------------------------------------- /src/demos/ps/chars/palman_f_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/chars/palman_f_brown.png -------------------------------------------------------------------------------- /src/demos/ps/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/config.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/3d.png -------------------------------------------------------------------------------- /src/demos/ps/dungeons/3d.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/3d.tiles.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/3d.vsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/3d.vsp -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Abion_dungeon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Abion_dungeon.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Abion_dungeon.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Abion_dungeon.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Abion_dungeon.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Abion_dungeon.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Aukba_tunnel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Aukba_tunnel.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Aukba_tunnel.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Aukba_tunnel.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Aukba_tunnel.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Aukba_tunnel.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Baya_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Baya_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Baya_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Baya_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Baya_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Baya_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Baya_malay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Baya_malay.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Baya_malay.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Baya_malay.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Baya_malay.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Baya_malay.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Blueberry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Blueberry.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Blueberry.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Blueberry.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Blueberry.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Blueberry.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Bortevo_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Bortevo_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Bortevo_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Bortevo_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Bortevo_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Bortevo_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Casba_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Casba_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Casba_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Casba_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Casba_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Casba_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Corona.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Corona.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Corona.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Corona.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Corona.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Corona.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Darkfalz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Darkfalz.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Darkfalz.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Darkfalz.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Darkfalz.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Darkfalz.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave1.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave1.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave1.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave1.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave2.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave2.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave2.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave2.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave3.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave3.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave3.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave3.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave4.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave4.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave4.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave4.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave4.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave_aukba.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave_aukba.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave_aukba.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave_aukba.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Dezo_cave_aukba.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Dezo_cave_aukba.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Drasgow_dungeon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Drasgow_dungeon.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Drasgow_dungeon.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Drasgow_dungeon.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Drasgow_dungeon.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Drasgow_dungeon.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Frost_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Frost_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Frost_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Frost_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Frost_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Frost_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Gothic_passageway.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Gothic_passageway.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Gothic_passageway.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Gothic_passageway.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Governor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Governor.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Governor.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Governor.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Governor.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Governor.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Guaron_morgue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Guaron_morgue.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Guaron_morgue.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Guaron_morgue.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Guaron_morgue.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Guaron_morgue.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Iala.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Iala.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Iala.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Iala.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Iala.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Iala.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Lassic_castle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Lassic_castle.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Lassic_castle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Lassic_castle.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Lassic_castle.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Lassic_castle.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Lost_island.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Lost_island.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Lost_island.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Lost_island.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Lost_island.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Lost_island.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/MapedPreferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/MapedPreferences.xml -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Medusa_tower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Medusa_tower.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Medusa_tower.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Medusa_tower.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Medusa_tower.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Medusa_tower.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Naharu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Naharu.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Naharu.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Naharu.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Naharu.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Naharu.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Naula.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Naula.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Naula.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Naula.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Naula.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Naula.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Odin_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Odin_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Odin_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Odin_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Odin_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Odin_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Prism_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Prism_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Prism_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Prism_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Prism_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Prism_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Prison.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Prison.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Prison.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Prison.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Prison.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Prison.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Skure_tunnel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Skure_tunnel.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Skure_tunnel.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Skure_tunnel.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Skure_tunnel.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Skure_tunnel.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Tajima_cave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Tajima_cave.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Tajima_cave.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Tajima_cave.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Tajima_cave.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Tajima_cave.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Triada.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Triada.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Triada.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Triada.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Triada.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Triada.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Warehouse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Warehouse.java -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Warehouse.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Warehouse.map -------------------------------------------------------------------------------- /src/demos/ps/dungeons/Warehouse.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/Warehouse.map.json -------------------------------------------------------------------------------- /src/demos/ps/dungeons/default.meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/dungeons/default.meta.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/Ending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/Ending.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/Title.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/chest.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/chest.anim.json -------------------------------------------------------------------------------- /src/demos/ps/images/original/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/chest.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Alis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Alis.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Beast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Beast1.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Beast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Beast2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Intro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Intro1.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Intro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Intro2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Myau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Myau.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Nero1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Nero1.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Nero2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Nero2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Noah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Noah.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Odin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Odin.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/cine/S_Odin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/cine/S_Odin2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/entities.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/lentities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/lentities.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/myau_flapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/myau_flapping.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/odin_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/odin_stone.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/Beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/Beach.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Altar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Altar.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Artic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Artic.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Baya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Baya.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Cave.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Food1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Food1.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Food2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Food2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Hand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Hand1.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Hand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Hand2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Hosp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Hosp1.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Hosp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Hosp2.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Pines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Pines.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Sky.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/C_Space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/C_Space.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/Gas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/Gas.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/Lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/Lava.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/scene/Sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/scene/Sea.png -------------------------------------------------------------------------------- /src/demos/ps/images/original/sky_castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/images/original/sky_castle.png -------------------------------------------------------------------------------- /src/demos/ps/lang/Script_de.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/lang/Script_de.properties -------------------------------------------------------------------------------- /src/demos/ps/lang/Script_en.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/lang/Script_en.properties -------------------------------------------------------------------------------- /src/demos/ps/lang/Script_fr.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/lang/Script_fr.properties -------------------------------------------------------------------------------- /src/demos/ps/lang/Script_pt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/lang/Script_pt.properties -------------------------------------------------------------------------------- /src/demos/ps/lang/Script_se.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/lang/Script_se.properties -------------------------------------------------------------------------------- /src/demos/ps/lang/Script_tt.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/lang/Script_tt.properties -------------------------------------------------------------------------------- /src/demos/ps/maps/Abion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Abion.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Abion.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Abion.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Abion.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Abion.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Aukba.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Aukba.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Aukba.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Aukba.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Aukba.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Aukba.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Aukba_entrance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Aukba_entrance.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Aukba_entrance.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Aukba_entrance.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Aukba_entrance.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Aukba_entrance.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Bortevo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Bortevo.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Bortevo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Bortevo.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Bortevo.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Bortevo.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Camineet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Camineet.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Camineet.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Camineet.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Camineet.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Camineet.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Casba.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Casba.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Casba.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Casba.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Casba.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Casba.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Dezoris.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Dezoris.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Dezoris.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Dezoris.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Dezoris.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Dezoris.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Drasgow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Drasgow.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Drasgow.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Drasgow.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Drasgow.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Drasgow.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Eppi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Eppi.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Eppi.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Eppi.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Eppi.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Eppi.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Gothic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Gothic.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Gothic.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Gothic.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Gothic.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Gothic.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Loar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Loar.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Loar.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Loar.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Loar.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Loar.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/MapedPreferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/MapedPreferences.xml -------------------------------------------------------------------------------- /src/demos/ps/maps/Motavia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Motavia.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Motavia.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Motavia.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Motavia.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Motavia.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/PS1.VSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/PS1.VSP -------------------------------------------------------------------------------- /src/demos/ps/maps/PS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/PS1.png -------------------------------------------------------------------------------- /src/demos/ps/maps/PS1.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/PS1.tiles.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Palma.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Palma.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Palma.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Palma.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Palma.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Palma.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Parolit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Parolit.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Parolit.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Parolit.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Parolit.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Parolit.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Paseo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Paseo.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Paseo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Paseo.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Paseo.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Paseo.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Scion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Scion.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Scion.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Scion.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Scion.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Scion.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Skure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Skure.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Skure.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Skure.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Skure.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Skure.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Skure_entrance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Skure_entrance.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Skure_entrance.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Skure_entrance.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Skure_entrance.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Skure_entrance.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Sky_castle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Sky_castle.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Sky_castle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Sky_castle.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Sky_castle.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Sky_castle.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Sopia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Sopia.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Sopia.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Sopia.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Sopia.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Sopia.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Spaceport1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Spaceport1.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Spaceport1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Spaceport1.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Spaceport1.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Spaceport1.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Spaceport2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Spaceport2.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Spaceport2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Spaceport2.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Spaceport2.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Spaceport2.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Tonoe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Tonoe.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Tonoe.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Tonoe.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Tonoe.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Tonoe.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/Uzo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Uzo.java -------------------------------------------------------------------------------- /src/demos/ps/maps/Uzo.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Uzo.map -------------------------------------------------------------------------------- /src/demos/ps/maps/Uzo.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/Uzo.map.json -------------------------------------------------------------------------------- /src/demos/ps/maps/default.meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/maps/default.meta.png -------------------------------------------------------------------------------- /src/demos/ps/music/Battle.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Battle.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Cave.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Cave.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Church.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Church.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/DarkFalz.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/DarkFalz.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Dezoris.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Dezoris.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Dungeon.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Dungeon.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Ending.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Ending.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/GameOver.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/GameOver.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Intro.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Intro.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Lassic.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Lassic.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Motavia.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Motavia.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Palma.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Palma.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Shop.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Shop.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Story.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Story.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Title.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Title.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Tower.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Tower.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Town.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Town.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Vehicle.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Vehicle.vgz -------------------------------------------------------------------------------- /src/demos/ps/music/Village.vgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/music/Village.vgz -------------------------------------------------------------------------------- /src/demos/ps/oo/BattlePosition.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/BattlePosition.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Battler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Battler.java -------------------------------------------------------------------------------- /src/demos/ps/oo/City.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/City.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Dungeon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Dungeon.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Enemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Enemy.java -------------------------------------------------------------------------------- /src/demos/ps/oo/EnemyBattler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/EnemyBattler.java -------------------------------------------------------------------------------- /src/demos/ps/oo/GameData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/GameData.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Item.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Job.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Job.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSBattle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSBattle.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSEffect.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSGame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSGame.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibCHR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibCHR.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibEnemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibEnemy.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibImage.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibItem.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibMusic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibMusic.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibSound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibSound.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSLibSpell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSLibSpell.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSMenu.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSMenuMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSMenuMain.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PSMenuShop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PSMenuShop.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Party.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Party.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PartyCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PartyCreator.java -------------------------------------------------------------------------------- /src/demos/ps/oo/PartyMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/PartyMember.java -------------------------------------------------------------------------------- /src/demos/ps/oo/Specie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/Specie.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuCHR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuCHR.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuImageBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuImageBox.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuLabelBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuLabelBox.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuPromptBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuPromptBox.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuStack.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuTextBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuTextBox.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/MenuType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/MenuType.java -------------------------------------------------------------------------------- /src/demos/ps/oo/menuGUI/Next_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/oo/menuGUI/Next_Icon.png -------------------------------------------------------------------------------- /src/demos/ps/smallfont.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/smallfont.gif -------------------------------------------------------------------------------- /src/demos/ps/sound/a0_rest.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a0_rest.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a1_rope.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a1_rope.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a2_pl_atk.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a2_pl_atk.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a3_laco_fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a3_laco_fail.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a4_laco_dmg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a4_laco_dmg.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a5_laser_gun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a5_laser_gun.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a6_fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a6_fire.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a7_heat_gun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a7_heat_gun.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/a9_thunder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/a9_thunder.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/aa_wind.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/aa_wind.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ab_spell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ab_spell.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ac_tele.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ac_tele.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ad_en_dmg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ad_en_dmg.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ae_pl_dmg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ae_pl_dmg.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/af_en_dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/af_en_dead.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b0_chest.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b0_chest.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b1_explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b1_explosion.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b2_arrow.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b2_arrow.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b3_item.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b3_item.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b4_landrov.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b4_landrov.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b5_hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b5_hover.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b6_tchac.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b6_tchac.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b8_spaceship.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b8_spaceship.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/b9_broken.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/b9_broken.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ba_levelup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ba_levelup.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/bb_miss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/bb_miss.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/bc_escape.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/bc_escape.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/bd_door.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/bd_door.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/be_beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/be_beep.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/bf_fly.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/bf_fly.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c0_fall_trap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c0_fall_trap.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c1_heal.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c1_heal.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c2_flute.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c2_flute.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c3_stairs.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c3_stairs.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c4_stairs.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c4_stairs.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c5_revive.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c5_revive.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c6_en_shot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c6_en_shot.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c7_en_jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c7_en_jump.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c8_en_splash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c8_en_splash.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c9_en_buzz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c9_en_buzz.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/c9_en_short_buzz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/c9_en_short_buzz.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ca_en_breath.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ca_en_breath.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/cb_en_sweep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/cb_en_sweep.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/cc_en_punch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/cc_en_punch.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/cd_light.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/cd_light.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/ce_en_minishot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/ce_en_minishot.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/cf_en_drain.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/cf_en_drain.wav -------------------------------------------------------------------------------- /src/demos/ps/sound/menu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/sound/menu.wav -------------------------------------------------------------------------------- /src/demos/ps/space/Dezo.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Dezo.anim.json -------------------------------------------------------------------------------- /src/demos/ps/space/Dezo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Dezo.png -------------------------------------------------------------------------------- /src/demos/ps/space/Mota.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Mota.anim.json -------------------------------------------------------------------------------- /src/demos/ps/space/Mota.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Mota.png -------------------------------------------------------------------------------- /src/demos/ps/space/Palma.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Palma.anim.json -------------------------------------------------------------------------------- /src/demos/ps/space/Palma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Palma.png -------------------------------------------------------------------------------- /src/demos/ps/space/Space.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Space.java -------------------------------------------------------------------------------- /src/demos/ps/space/Space.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Space.map -------------------------------------------------------------------------------- /src/demos/ps/space/Space.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Space.map.json -------------------------------------------------------------------------------- /src/demos/ps/space/Space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Space.png -------------------------------------------------------------------------------- /src/demos/ps/space/Space.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Space.tiles.json -------------------------------------------------------------------------------- /src/demos/ps/space/Space.vsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Space.vsp -------------------------------------------------------------------------------- /src/demos/ps/space/Spaceship1.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Spaceship1.anim.json -------------------------------------------------------------------------------- /src/demos/ps/space/Spaceship1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Spaceship1.png -------------------------------------------------------------------------------- /src/demos/ps/space/Spaceship2.anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Spaceship2.anim.json -------------------------------------------------------------------------------- /src/demos/ps/space/Spaceship2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/ps/space/Spaceship2.png -------------------------------------------------------------------------------- /src/demos/xeen/2018_darkside.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/xeen/2018_darkside.map.json -------------------------------------------------------------------------------- /src/demos/xeen/2018_darkside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/xeen/2018_darkside.png -------------------------------------------------------------------------------- /src/demos/xeen/2018_darkside.tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/xeen/2018_darkside.tiles.json -------------------------------------------------------------------------------- /src/demos/xeen/default.meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/demos/xeen/default.meta.png -------------------------------------------------------------------------------- /src/domain/CHR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/CHR.java -------------------------------------------------------------------------------- /src/domain/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/Config.java -------------------------------------------------------------------------------- /src/domain/Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/Entity.java -------------------------------------------------------------------------------- /src/domain/EntityImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/EntityImpl.java -------------------------------------------------------------------------------- /src/domain/Map.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/Map.java -------------------------------------------------------------------------------- /src/domain/MapAbstract.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/MapAbstract.java -------------------------------------------------------------------------------- /src/domain/MapTiledJSON.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/MapTiledJSON.java -------------------------------------------------------------------------------- /src/domain/Tileset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/Tileset.java -------------------------------------------------------------------------------- /src/domain/VFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/VFont.java -------------------------------------------------------------------------------- /src/domain/VImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/VImage.java -------------------------------------------------------------------------------- /src/domain/VSound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/VSound.java -------------------------------------------------------------------------------- /src/domain/ZoneProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/domain/ZoneProperties.java -------------------------------------------------------------------------------- /src/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/log4j2.xml -------------------------------------------------------------------------------- /src/persist/PCXReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/persist/PCXReader.java -------------------------------------------------------------------------------- /src/persist/SimulatedRandomAccessFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/persist/SimulatedRandomAccessFile.java -------------------------------------------------------------------------------- /src/util/AutoTiling.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/util/AutoTiling.java -------------------------------------------------------------------------------- /src/util/MapProcess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/util/MapProcess.java -------------------------------------------------------------------------------- /src/util/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/src/util/Point.java -------------------------------------------------------------------------------- /test/demos/ps/AlisQuestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/AlisQuestTest.java -------------------------------------------------------------------------------- /test/demos/ps/BattleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/BattleTest.java -------------------------------------------------------------------------------- /test/demos/ps/NoSimulationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/NoSimulationTest.java -------------------------------------------------------------------------------- /test/demos/ps/OdinQuestTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/OdinQuestTest.java -------------------------------------------------------------------------------- /test/demos/ps/PSMenuShopTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/PSMenuShopTest.java -------------------------------------------------------------------------------- /test/demos/ps/PartyMemberTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/PartyMemberTest.java -------------------------------------------------------------------------------- /test/demos/ps/oo/BattlerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafael-esper/JLud2D/HEAD/test/demos/ps/oo/BattlerTest.java --------------------------------------------------------------------------------