├── README.md ├── config ├── Backgrounds │ ├── _resources.list.xml │ ├── bgCave.png │ ├── bgCave.xml │ ├── bgCaveBack.png │ └── bgCaveBack.xml ├── Constants.xml ├── Extension Packages.xml ├── Fonts │ ├── _resources.list.xml │ ├── font0.xml │ ├── fontAnsi.xml │ ├── fontAnsiSmall.xml │ ├── fontArabic.xml │ ├── fontArabicSmall.xml │ ├── fontBaltic.xml │ ├── fontBalticSmall.xml │ ├── fontChineseSimplified.xml │ ├── fontChineseSimplifiedSmall.xml │ ├── fontChineseTraditional.xml │ ├── fontChineseTraditionalSmall.xml │ ├── fontEastEurope.xml │ ├── fontEastEuropeSmall.xml │ ├── fontGreek.xml │ ├── fontGreekSmall.xml │ ├── fontHebrew.xml │ ├── fontHebrewSmall.xml │ ├── fontJapanese.xml │ ├── fontJapaneseSmall.xml │ ├── fontKoreanH.xml │ ├── fontKoreanHSmall.xml │ ├── fontKoreanJ.xml │ ├── fontKoreanJSmall.xml │ ├── fontRussian.xml │ ├── fontRussianSmall.xml │ ├── fontThai.xml │ ├── fontThaiSmall.xml │ ├── fontTurkish.xml │ ├── fontTurkishSmall.xml │ ├── fontVietnamese.xml │ └── fontVietnameseSmall.xml ├── Game Information.txt ├── Game Information.xml ├── Global Game Settings.xml ├── Objects │ ├── Cave │ │ ├── _resources.list.xml │ │ ├── oAltar.xml │ │ ├── oCaveBG.xml │ │ ├── oCaveBottom.xml │ │ ├── oCaveFringe.xml │ │ ├── oCaveTop.xml │ │ ├── oConfigLogo.xml │ │ ├── oDoor.xml │ │ ├── oGoldIdol.xml │ │ └── oPlayer.xml │ ├── Init │ │ ├── _resources.list.xml │ │ ├── oCheckBox.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox.xml │ │ ├── oCheckBox2.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox2.xml │ │ ├── oCheckBox3.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox3.xml │ │ ├── oCheckBox4.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox4.xml │ │ ├── oCheckBox5.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox5.xml │ │ ├── oExitButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oExitButton.xml │ │ ├── oJoyConfigButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oJoyConfigButton.xml │ │ ├── oKeyConfigButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oKeyConfigButton.xml │ │ ├── oLanguageConfig.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oLanguageConfig.xml │ │ ├── oOKButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oOKButton.xml │ │ ├── oRadioBox.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oRadioBox.xml │ │ ├── oSlider1.events │ │ │ ├── Create.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Step.xml │ │ ├── oSlider1.xml │ │ ├── oSlider2.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Step.xml │ │ ├── oSlider2.xml │ │ └── oSliderBG.xml │ ├── Menu │ │ ├── _resources.list.xml │ │ ├── oBlack.xml │ │ ├── oBlackBG.xml │ │ ├── oMenuBottom.xml │ │ ├── oMenuLL.xml │ │ ├── oMenuLR.xml │ │ ├── oMenuLeft.xml │ │ ├── oMenuRight.xml │ │ ├── oMenuTop.xml │ │ ├── oMenuUL.xml │ │ ├── oMenuUR.xml │ │ ├── oPageDown.events │ │ │ ├── Key down pressed.xml │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oPageDown.xml │ │ ├── oPageUp.events │ │ │ ├── Key up pressed.xml │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ └── oPageUp.xml │ ├── _resources.list.xml │ ├── oGamepad.events │ │ ├── Create.xml │ │ └── Step.xml │ ├── oGamepad.xml │ ├── oInit.events │ │ ├── Close Button.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key enter.xml │ │ └── Key escape.xml │ ├── oInit.xml │ ├── oJoyConfig.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Room End.xml │ │ └── Step.xml │ ├── oJoyConfig.xml │ ├── oKeyConfig.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key any key pressed.xml │ │ └── Room End.xml │ ├── oKeyConfig.xml │ ├── oLoadVal.events │ │ └── Create.xml │ ├── oLoadVal.xml │ ├── oMusic.events │ │ ├── Create.xml │ │ └── Game End.xml │ ├── oMusic.xml │ └── supersound │ │ ├── _resources.list.xml │ │ ├── core.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Game End.xml │ │ └── Mouse unknown 12.xml │ │ ├── core.xml │ │ ├── mascara.events │ │ └── Create.xml │ │ ├── mascara.xml │ │ └── mascara2.xml ├── Paths │ └── _resources.list.xml ├── Rooms │ ├── _resources.list.xml │ ├── rInit.xml │ ├── rJoyConfig.xml │ ├── rKeyConfig.xml │ └── rLanguageConfig.xml ├── Scripts │ ├── Control │ │ ├── _resources.list.xml │ │ ├── checkAttack.gml │ │ ├── checkAttackPressed.gml │ │ ├── checkAttackReleased.gml │ │ ├── checkBombPressed.gml │ │ ├── checkDown.gml │ │ ├── checkDownPressed.gml │ │ ├── checkFlarePressed.gml │ │ ├── checkItemPressed.gml │ │ ├── checkJoyButton.gml │ │ ├── checkJump.gml │ │ ├── checkJumpPressed.gml │ │ ├── checkJumpReleased.gml │ │ ├── checkLeft.gml │ │ ├── checkLeftPressed.gml │ │ ├── checkLeftReleased.gml │ │ ├── checkPayPressed.gml │ │ ├── checkRight.gml │ │ ├── checkRightPressed.gml │ │ ├── checkRightReleased.gml │ │ ├── checkRopePressed.gml │ │ ├── checkRun.gml │ │ ├── checkStartPressed.gml │ │ ├── checkUp.gml │ │ └── checkUpPressed.gml │ ├── _resources.list.xml │ ├── rand.gml │ ├── scrExit.gml │ ├── scrGetChar.gml │ ├── scrGetJoy.gml │ ├── scrGetKey.gml │ ├── scrSaveSettings.gml │ └── supersound │ │ ├── Advanced │ │ ├── SS_GetSoundBytesPerSecond.gml │ │ ├── SS_GetSoundFreq.gml │ │ ├── SS_GetSoundLength.gml │ │ ├── SS_GetSoundPan.gml │ │ ├── SS_GetSoundPosition.gml │ │ ├── SS_GetSoundVol.gml │ │ ├── SS_IsHandleValid.gml │ │ ├── SS_IsSoundLooping.gml │ │ ├── SS_IsSoundPaused.gml │ │ ├── SS_IsSoundPlaying.gml │ │ ├── SS_PauseSound.gml │ │ ├── SS_ResumeSound.gml │ │ ├── SS_SetSoundPosition.gml │ │ └── _resources.list.xml │ │ ├── SS_FreeSound.gml │ │ ├── SS_Init.gml │ │ ├── SS_LoadSound.gml │ │ ├── SS_LoopSound.gml │ │ ├── SS_PlaySound.gml │ │ ├── SS_SetSoundFreq.gml │ │ ├── SS_SetSoundPan.gml │ │ ├── SS_SetSoundVol.gml │ │ ├── SS_StopSound.gml │ │ ├── SS_Unload.gml │ │ └── _resources.list.xml ├── Sounds │ └── _resources.list.xml ├── Sprites │ ├── Cave │ │ ├── _resources.list.xml │ │ ├── sAltar.images │ │ │ └── image 0.png │ │ ├── sAltar.xml │ │ ├── sCaveBG.images │ │ │ └── image 0.png │ │ ├── sCaveBG.xml │ │ ├── sCaveDown.images │ │ │ └── image 0.png │ │ ├── sCaveDown.xml │ │ ├── sCaveFringe.images │ │ │ └── image 0.png │ │ ├── sCaveFringe.xml │ │ ├── sCaveTop.images │ │ │ └── image 0.png │ │ ├── sCaveTop.xml │ │ ├── sConfigLogo.images │ │ │ └── image 0.png │ │ ├── sConfigLogo.xml │ │ ├── sDoor.images │ │ │ └── image 0.png │ │ ├── sDoor.xml │ │ ├── sGoldIdol.images │ │ │ └── image 0.png │ │ ├── sGoldIdol.xml │ │ ├── sPlayer.images │ │ │ └── image 0.png │ │ └── sPlayer.xml │ ├── Other │ │ ├── _resources.list.xml │ │ ├── sBox.images │ │ │ └── image 0.png │ │ ├── sBox.xml │ │ ├── sBoxChecked.images │ │ │ └── image 0.png │ │ ├── sBoxChecked.xml │ │ ├── sBoxMarked.images │ │ │ └── image 0.png │ │ ├── sBoxMarked.xml │ │ ├── sEndPlat.images │ │ │ └── image 0.png │ │ ├── sEndPlat.xml │ │ ├── sExitButton.images │ │ │ └── image 0.png │ │ ├── sExitButton.xml │ │ ├── sExitButtonPressed.images │ │ │ └── image 0.png │ │ ├── sExitButtonPressed.xml │ │ ├── sJoyConfigButton.images │ │ │ └── image 0.png │ │ ├── sJoyConfigButton.xml │ │ ├── sJoyConfigButtonPressed.images │ │ │ └── image 0.png │ │ ├── sJoyConfigButtonPressed.xml │ │ ├── sKeyConfigButton.images │ │ │ └── image 0.png │ │ ├── sKeyConfigButton.xml │ │ ├── sKeyConfigButtonPressed.images │ │ │ └── image 0.png │ │ ├── sKeyConfigButtonPressed.xml │ │ ├── sLangOkButton.images │ │ │ └── image 0.png │ │ ├── sLangOkButton.xml │ │ ├── sLangOkButtonPressed.images │ │ │ └── image 0.png │ │ ├── sLangOkButtonPressed.xml │ │ ├── sLanguageConfigButton.images │ │ │ └── image 0.png │ │ ├── sLanguageConfigButton.xml │ │ ├── sLanguageConfigButtonPressed.images │ │ │ └── image 0.png │ │ ├── sLanguageConfigButtonPressed.xml │ │ ├── sLanguageDown.images │ │ │ └── image 0.png │ │ ├── sLanguageDown.xml │ │ ├── sLanguageUp.images │ │ │ └── image 0.png │ │ ├── sLanguageUp.xml │ │ ├── sMenuBottom.images │ │ │ └── image 0.png │ │ ├── sMenuBottom.xml │ │ ├── sMenuLL.images │ │ │ └── image 0.png │ │ ├── sMenuLL.xml │ │ ├── sMenuLR.images │ │ │ └── image 0.png │ │ ├── sMenuLR.xml │ │ ├── sMenuLeft.images │ │ │ └── image 0.png │ │ ├── sMenuLeft.xml │ │ ├── sMenuRight.images │ │ │ └── image 0.png │ │ ├── sMenuRight.xml │ │ ├── sMenuTop.images │ │ │ └── image 0.png │ │ ├── sMenuTop.xml │ │ ├── sMenuUL.images │ │ │ └── image 0.png │ │ ├── sMenuUL.xml │ │ ├── sMenuUR.images │ │ │ └── image 0.png │ │ ├── sMenuUR.xml │ │ ├── sOKButton.images │ │ │ └── image 0.png │ │ ├── sOKButton.xml │ │ ├── sOKButtonPressed.images │ │ │ └── image 0.png │ │ ├── sOKButtonPressed.xml │ │ ├── sPageDown.images │ │ │ └── image 0.png │ │ ├── sPageDown.xml │ │ ├── sPageUp.images │ │ │ └── image 0.png │ │ ├── sPageUp.xml │ │ ├── sSlider.images │ │ │ └── image 0.png │ │ ├── sSlider.xml │ │ ├── sSliderBG.images │ │ │ └── image 0.png │ │ └── sSliderBG.xml │ ├── _resources.list.xml │ ├── sBlack.images │ │ └── image 0.png │ ├── sBlack.xml │ ├── sFont.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 10.png │ │ ├── image 11.png │ │ ├── image 12.png │ │ ├── image 13.png │ │ ├── image 14.png │ │ ├── image 15.png │ │ ├── image 16.png │ │ ├── image 17.png │ │ ├── image 18.png │ │ ├── image 19.png │ │ ├── image 2.png │ │ ├── image 20.png │ │ ├── image 21.png │ │ ├── image 22.png │ │ ├── image 23.png │ │ ├── image 24.png │ │ ├── image 25.png │ │ ├── image 26.png │ │ ├── image 27.png │ │ ├── image 28.png │ │ ├── image 29.png │ │ ├── image 3.png │ │ ├── image 30.png │ │ ├── image 31.png │ │ ├── image 32.png │ │ ├── image 33.png │ │ ├── image 34.png │ │ ├── image 35.png │ │ ├── image 36.png │ │ ├── image 37.png │ │ ├── image 38.png │ │ ├── image 39.png │ │ ├── image 4.png │ │ ├── image 40.png │ │ ├── image 41.png │ │ ├── image 42.png │ │ ├── image 43.png │ │ ├── image 44.png │ │ ├── image 45.png │ │ ├── image 46.png │ │ ├── image 47.png │ │ ├── image 48.png │ │ ├── image 49.png │ │ ├── image 5.png │ │ ├── image 50.png │ │ ├── image 51.png │ │ ├── image 52.png │ │ ├── image 53.png │ │ ├── image 54.png │ │ ├── image 55.png │ │ ├── image 56.png │ │ ├── image 57.png │ │ ├── image 58.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ ├── sFont.xml │ ├── sFontOld.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 2.png │ │ ├── image 3.png │ │ ├── image 4.png │ │ ├── image 5.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ ├── sFontOld.xml │ ├── sFontSmall.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 10.png │ │ ├── image 11.png │ │ ├── image 12.png │ │ ├── image 13.png │ │ ├── image 14.png │ │ ├── image 15.png │ │ ├── image 16.png │ │ ├── image 17.png │ │ ├── image 18.png │ │ ├── image 19.png │ │ ├── image 2.png │ │ ├── image 20.png │ │ ├── image 21.png │ │ ├── image 22.png │ │ ├── image 23.png │ │ ├── image 24.png │ │ ├── image 25.png │ │ ├── image 26.png │ │ ├── image 27.png │ │ ├── image 28.png │ │ ├── image 29.png │ │ ├── image 3.png │ │ ├── image 30.png │ │ ├── image 31.png │ │ ├── image 32.png │ │ ├── image 33.png │ │ ├── image 34.png │ │ ├── image 35.png │ │ ├── image 36.png │ │ ├── image 37.png │ │ ├── image 38.png │ │ ├── image 39.png │ │ ├── image 4.png │ │ ├── image 40.png │ │ ├── image 41.png │ │ ├── image 42.png │ │ ├── image 43.png │ │ ├── image 44.png │ │ ├── image 45.png │ │ ├── image 46.png │ │ ├── image 47.png │ │ ├── image 48.png │ │ ├── image 49.png │ │ ├── image 5.png │ │ ├── image 50.png │ │ ├── image 51.png │ │ ├── image 52.png │ │ ├── image 53.png │ │ ├── image 54.png │ │ ├── image 55.png │ │ ├── image 56.png │ │ ├── image 57.png │ │ ├── image 58.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ ├── sFontSmall.xml │ ├── sRotatingFlags.images │ │ └── image 0.png │ ├── sRotatingFlags.xml │ ├── sRotatingFlagsPosition.images │ │ └── image 0.png │ └── sRotatingFlagsPosition.xml ├── Time Lines │ └── _resources.list.xml ├── game icon.ico └── loading image.png ├── spelunky ├── Backgrounds │ ├── _resources.list.xml │ ├── backgroundClouds.png │ ├── backgroundClouds.xml │ ├── backgroundNight.png │ ├── backgroundNight.xml │ ├── bgAlienShip.png │ ├── bgAlienShip.xml │ ├── bgAlienShip2.png │ ├── bgAlienShip2.xml │ ├── bgAlienShip3.png │ ├── bgAlienShip3.xml │ ├── bgCave.png │ ├── bgCave.xml │ ├── bgCaveTop.png │ ├── bgCaveTop.xml │ ├── bgCaveTop2.png │ ├── bgCaveTop2.xml │ ├── bgCaveTop3.png │ ├── bgCaveTop3.xml │ ├── bgCaveTop4.png │ ├── bgCaveTop4.xml │ ├── bgClouds.png │ ├── bgClouds.xml │ ├── bgDiceSign.png │ ├── bgDiceSign.xml │ ├── bgExtras.png │ ├── bgExtras.xml │ ├── bgExtrasIce.png │ ├── bgExtrasIce.xml │ ├── bgExtrasLush.png │ ├── bgExtrasLush.xml │ ├── bgExtrasTemple.png │ ├── bgExtrasTemple.xml │ ├── bgHmm.png │ ├── bgHmm.xml │ ├── bgKaliBody.png │ ├── bgKaliBody.xml │ ├── bgKaliHeads.png │ ├── bgKaliHeads.xml │ ├── bgLadyXoc.png │ ├── bgLadyXoc.xml │ ├── bgSky.png │ ├── bgSky.xml │ ├── bgStatues.png │ ├── bgStatues.xml │ ├── bgTemp.png │ ├── bgTemp.xml │ ├── bgTemple.png │ ├── bgTemple.xml │ ├── bgTiki.png │ ├── bgTiki.xml │ ├── bgTikiArms.png │ ├── bgTikiArms.xml │ ├── bgTitle.png │ ├── bgTitle.xml │ ├── bgTrees.png │ ├── bgTrees.xml │ ├── bgVineRoots.png │ ├── bgVineRoots.xml │ ├── bgWanted.png │ └── bgWanted.xml ├── Constants.xml ├── Extension Packages.xml ├── Fonts │ └── _resources.list.xml ├── Game Information.txt ├── Game Information.xml ├── Global Game Settings.xml ├── Objects │ ├── Basis │ │ ├── _resources.list.xml │ │ ├── oBackdrop.events │ │ │ └── Create.xml │ │ ├── oBackdrop.xml │ │ ├── oCharacter.xml │ │ ├── oDetritus.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oDetritus.xml │ │ ├── oDrawnSprite.events │ │ │ └── Create.xml │ │ ├── oDrawnSprite.xml │ │ ├── oEnemy.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ ├── Draw.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oEnemy.xml │ │ ├── oForeground.events │ │ │ └── Create.xml │ │ ├── oForeground.xml │ │ ├── oFrill.xml │ │ ├── oItem.events │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oItem.xml │ │ ├── oLadder.xml │ │ ├── oMenu.xml │ │ ├── oMoveableSolid.events │ │ │ └── Create.xml │ │ ├── oMoveableSolid.xml │ │ ├── oMovingSolid.events │ │ │ └── Create.xml │ │ ├── oMovingSolid.xml │ │ ├── oPlatform.xml │ │ ├── oRubblePiece.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oRubblePiece.xml │ │ ├── oSolid.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oSolid.xml │ │ ├── oTreasure.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oTreasure.xml │ │ ├── oWater.events │ │ │ └── Create.xml │ │ └── oWater.xml │ ├── Blocks │ │ ├── _resources.list.xml │ │ ├── oAlienShip.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oAlienShip.xml │ │ ├── oAlienShipFloor.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oAlienShipFloor.xml │ │ ├── oAltarLeft.events │ │ │ └── Destroy.xml │ │ ├── oAltarLeft.xml │ │ ├── oAltarRight.events │ │ │ └── Destroy.xml │ │ ├── oAltarRight.xml │ │ ├── oBlackFadeUp.xml │ │ ├── oBlock.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oBlock.xml │ │ ├── oBrick.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oBrick.xml │ │ ├── oBrickSmooth.events │ │ │ └── Destroy.xml │ │ ├── oBrickSmooth.xml │ │ ├── oCaveBG.events │ │ │ └── Create.xml │ │ ├── oCaveBG.xml │ │ ├── oCaveBG2.xml │ │ ├── oCaveBGEntrance.xml │ │ ├── oDark.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oDark.xml │ │ ├── oDarkFall.events │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oDarkFall.xml │ │ ├── oEntrance.events │ │ │ ├── Create.xml │ │ │ └── Draw.xml │ │ ├── oEntrance.xml │ │ ├── oExit.events │ │ │ ├── Create.xml │ │ │ └── Draw.xml │ │ ├── oExit.xml │ │ ├── oFrozenCaveman.events │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oFrozenCaveman.xml │ │ ├── oGold.events │ │ │ └── Destroy.xml │ │ ├── oGold.xml │ │ ├── oGoldBig.events │ │ │ └── Destroy.xml │ │ ├── oGoldBig.xml │ │ ├── oGoldDoor.events │ │ │ └── Collision with oSceptre.xml │ │ ├── oGoldDoor.xml │ │ ├── oGrave.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oGrave.xml │ │ ├── oHardBlock.events │ │ │ └── Create.xml │ │ ├── oHardBlock.xml │ │ ├── oIce.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oIce.xml │ │ ├── oIceBlock.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oIceBlock.xml │ │ ├── oIceBottom.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oIceBottom.xml │ │ ├── oKaliHead.events │ │ │ ├── Alarm 0.xml │ │ │ └── Create.xml │ │ ├── oKaliHead.xml │ │ ├── oLadderOrange.xml │ │ ├── oLadderTop.xml │ │ ├── oLamp.events │ │ │ └── Create.xml │ │ ├── oLamp.xml │ │ ├── oLampRed.events │ │ │ └── Create.xml │ │ ├── oLampRed.xml │ │ ├── oLava.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oLava.xml │ │ ├── oLavaSolid.events │ │ │ └── Create.xml │ │ ├── oLavaSolid.xml │ │ ├── oLeaves.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oLeaves.xml │ │ ├── oLeavesTile.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oLeavesTile.xml │ │ ├── oLush.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oLush.xml │ │ ├── oMoai.events │ │ │ └── Create.xml │ │ ├── oMoai.xml │ │ ├── oMoai2.events │ │ │ └── Create.xml │ │ ├── oMoai2.xml │ │ ├── oMoai3.events │ │ │ └── Create.xml │ │ ├── oMoai3.xml │ │ ├── oMoaiInside.events │ │ │ ├── Collision with oCharacter.xml │ │ │ └── Create.xml │ │ ├── oMoaiInside.xml │ │ ├── oMsgSign.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Create.xml │ │ │ └── Draw.xml │ │ ├── oMsgSign.xml │ │ ├── oPushBlock.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oPushBlock.xml │ │ ├── oSacAltarLeft.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oSacAltarLeft.xml │ │ ├── oSacAltarRight.xml │ │ ├── oSign.events │ │ │ └── Destroy.xml │ │ ├── oSign.xml │ │ ├── oSplash.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oSplash.xml │ │ ├── oTemple.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ ├── oTemple.xml │ │ ├── oTempleFake.events │ │ │ └── Step.xml │ │ ├── oTempleFake.xml │ │ ├── oThinIce.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oThinIce.xml │ │ ├── oTikiTorch.events │ │ │ └── Create.xml │ │ ├── oTikiTorch.xml │ │ ├── oTree.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oTree.xml │ │ ├── oTreeBranch.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oTreeBranch.xml │ │ ├── oTreeBranchTile.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oTreeBranchTile.xml │ │ ├── oTreeTile.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oTreeTile.xml │ │ ├── oVine.xml │ │ ├── oVineTop.xml │ │ ├── oWaterSwim.events │ │ │ └── Destroy.xml │ │ ├── oWaterSwim.xml │ │ ├── oXGold.xml │ │ ├── oXMarket.events │ │ │ └── Create.xml │ │ ├── oXMarket.xml │ │ ├── oXocBlock.events │ │ │ ├── Create.xml │ │ │ └── Destroy.xml │ │ └── oXocBlock.xml │ ├── Characters │ │ ├── _resources.list.xml │ │ ├── oDamsel.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oDamsel.xml │ │ ├── oDamselKiss.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ ├── Room End.xml │ │ │ └── Step.xml │ │ ├── oDamselKiss.xml │ │ ├── oShopkeeper.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oShotgun.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oShopkeeper.xml │ │ ├── oShopkeeper2.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oShopkeeper2.xml │ │ ├── oTunnelMan.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oTunnelMan.xml │ │ ├── oYellHelp.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ └── oYellHelp.xml │ ├── Collectibles │ │ ├── _resources.list.xml │ │ ├── oAnkh.events │ │ │ └── Create.xml │ │ ├── oAnkh.xml │ │ ├── oBombBag.events │ │ │ └── Create.xml │ │ ├── oBombBag.xml │ │ ├── oBombBox.events │ │ │ └── Create.xml │ │ ├── oBombBox.xml │ │ ├── oBones.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBones.xml │ │ ├── oCape.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oCape.xml │ │ ├── oCapePickup.events │ │ │ └── Create.xml │ │ ├── oCapePickup.xml │ │ ├── oChest.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oChest.xml │ │ ├── oCompass.events │ │ │ └── Create.xml │ │ ├── oCompass.xml │ │ ├── oCrate.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oCrate.xml │ │ ├── oCrown.events │ │ │ └── Create.xml │ │ ├── oCrown.xml │ │ ├── oDiamond.events │ │ │ ├── Alarm 0.xml │ │ │ └── Create.xml │ │ ├── oDiamond.xml │ │ ├── oEmerald.events │ │ │ ├── Alarm 0.xml │ │ │ └── Create.xml │ │ ├── oEmerald.xml │ │ ├── oEmeraldBig.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oGhost.xml │ │ │ └── Create.xml │ │ ├── oEmeraldBig.xml │ │ ├── oFakeBones.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFakeBones.xml │ │ ├── oFireFrogArmed.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFireFrogArmed.xml │ │ ├── oFlareCrate.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFlareCrate.xml │ │ ├── oGloves.events │ │ │ └── Create.xml │ │ ├── oGloves.xml │ │ ├── oGoldBar.events │ │ │ └── Create.xml │ │ ├── oGoldBar.xml │ │ ├── oGoldBars.events │ │ │ └── Create.xml │ │ ├── oGoldBars.xml │ │ ├── oGoldChunk.events │ │ │ └── Create.xml │ │ ├── oGoldChunk.xml │ │ ├── oGoldNugget.events │ │ │ ├── Alarm 0.xml │ │ │ └── Create.xml │ │ ├── oGoldNugget.xml │ │ ├── oJetpack.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oJetpack.xml │ │ ├── oJordans.events │ │ │ └── Create.xml │ │ ├── oJordans.xml │ │ ├── oKapala.events │ │ │ └── Create.xml │ │ ├── oKapala.xml │ │ ├── oKey.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oKey.xml │ │ ├── oLockedChest.events │ │ │ ├── Collision with oKey.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oLockedChest.xml │ │ ├── oMitt.events │ │ │ └── Create.xml │ │ ├── oMitt.xml │ │ ├── oParaPickup.events │ │ │ └── Create.xml │ │ ├── oParaPickup.xml │ │ ├── oParaUsed.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oParaUsed.xml │ │ ├── oPaste.events │ │ │ └── Create.xml │ │ ├── oPaste.xml │ │ ├── oRopeBag.events │ │ │ └── Create.xml │ │ ├── oRopeBag.xml │ │ ├── oRopePile.events │ │ │ └── Create.xml │ │ ├── oRopePile.xml │ │ ├── oRuby.events │ │ │ ├── Alarm 0.xml │ │ │ └── Create.xml │ │ ├── oRuby.xml │ │ ├── oRubyBig.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oGhost.xml │ │ │ └── Create.xml │ │ ├── oRubyBig.xml │ │ ├── oSapphire.events │ │ │ ├── Alarm 0.xml │ │ │ └── Create.xml │ │ ├── oSapphire.xml │ │ ├── oSapphireBig.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oGhost.xml │ │ │ └── Create.xml │ │ ├── oSapphireBig.xml │ │ ├── oSpectacles.events │ │ │ └── Create.xml │ │ ├── oSpectacles.xml │ │ ├── oSpikeShoes.events │ │ │ └── Create.xml │ │ ├── oSpikeShoes.xml │ │ ├── oSpringShoes.events │ │ │ └── Create.xml │ │ ├── oSpringShoes.xml │ │ ├── oUdjatEye.events │ │ │ └── Create.xml │ │ └── oUdjatEye.xml │ ├── Effects │ │ ├── _resources.list.xml │ │ ├── oBigCollect.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBigCollect.xml │ │ ├── oBlood.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBlood.xml │ │ ├── oBloodSpark.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBloodSpark.xml │ │ ├── oBloodTrail.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oBloodTrail.xml │ │ ├── oBone.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBone.xml │ │ ├── oBubble.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBubble.xml │ │ ├── oBullet.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBullet.xml │ │ ├── oBurn.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBurn.xml │ │ ├── oDrip.events │ │ │ └── Create.xml │ │ ├── oDrip.xml │ │ ├── oExplosion.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oBarrierEmitter.xml │ │ │ ├── Collision with oBoulder.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Collision with oWeb.xml │ │ │ └── Create.xml │ │ ├── oExplosion.xml │ │ ├── oFlame.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oWater.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oFlame.xml │ │ ├── oFlameTrail.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oFlameTrail.xml │ │ ├── oFlareSpark.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFlareSpark.xml │ │ ├── oFly.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFly.xml │ │ ├── oHeart.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oHeart.xml │ │ ├── oItemsGet.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oItemsGet.xml │ │ ├── oLaser.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oLaser.xml │ │ ├── oLaserExplode.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oLaserExplode.xml │ │ ├── oLaserTrail.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oLaserTrail.xml │ │ ├── oLavaDrip.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oLavaDrip.xml │ │ ├── oLeaf.events │ │ │ └── Create.xml │ │ ├── oLeaf.xml │ │ ├── oPoof.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPoof.xml │ │ ├── oPsychicCreate.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPsychicCreate.xml │ │ ├── oPsychicCreate2.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPsychicCreate2.xml │ │ ├── oPsychicCreateP.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPsychicCreateP.xml │ │ ├── oPsychicWave.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oPsychicWave.xml │ │ ├── oPsychicWaveP.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oPsychicWaveP.xml │ │ ├── oRopeBurn.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oRopeBurn.xml │ │ ├── oRubble.xml │ │ ├── oRubbleDark.events │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oRubbleDark.xml │ │ ├── oRubbleDarkSmall.events │ │ │ └── Outside Room.xml │ │ ├── oRubbleDarkSmall.xml │ │ ├── oRubbleSmall.xml │ │ ├── oShotgunBlastLeft.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oShotgunBlastLeft.xml │ │ ├── oShotgunBlastRight.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oShotgunBlastRight.xml │ │ ├── oSmallCollect.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSmallCollect.xml │ │ ├── oSmokePuff.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSmokePuff.xml │ │ ├── oVolcanoFlame.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oVolcanoFlame.xml │ │ ├── oWeb.events │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Collision with oLaser.xml │ │ │ ├── Collision with oRubblePiece.xml │ │ │ ├── Collision with oSlash.xml │ │ │ ├── Collision with oTreasure.xml │ │ │ ├── Collision with oWater.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oWeb.xml │ │ ├── oWebBall.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Collision with oWater.xml │ │ │ ├── Collision with oWeb.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oWebBall.xml │ │ ├── oYellowBall.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oYellowBall.xml │ │ ├── oYellowTrail.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ └── oYellowTrail.xml │ ├── Enemies │ │ ├── _resources.list.xml │ │ ├── oAlien.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oAlien.xml │ │ ├── oAlienBoss.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oAlienBoss.xml │ │ ├── oAlienEject.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oPlayer1.xml │ │ │ ├── Collision with oWeb.xml │ │ │ ├── Create.xml │ │ │ ├── Outside Room.xml │ │ │ └── Step.xml │ │ ├── oAlienEject.xml │ │ ├── oBarrier.events │ │ │ ├── Collision with oBullet.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oItem.xml │ │ │ └── Collision with oWebBall.xml │ │ ├── oBarrier.xml │ │ ├── oBarrierEmitter.events │ │ │ ├── Collision with oBullet.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oBarrierEmitter.xml │ │ ├── oBat.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBat.xml │ │ ├── oCaveman.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oCaveman.xml │ │ ├── oCavemanWorship.events │ │ │ └── Create.xml │ │ ├── oCavemanWorship.xml │ │ ├── oDeadFish.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oDeadFish.xml │ │ ├── oEnemySight.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oSolid.xml │ │ │ └── Create.xml │ │ ├── oEnemySight.xml │ │ ├── oEntranceCheck.events │ │ │ ├── Collision with oSolid.xml │ │ │ └── Step.xml │ │ ├── oEntranceCheck.xml │ │ ├── oFireFrog.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFireFrog.xml │ │ ├── oFrog.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFrog.xml │ │ ├── oGhost.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oGhost.xml │ │ ├── oGiantSpider.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oGiantSpider.xml │ │ ├── oGiantSpiderHang.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oGiantSpiderHang.xml │ │ ├── oHawkman.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oHawkman.xml │ │ ├── oHawkmanWorship.xml │ │ ├── oJaws.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oJaws.xml │ │ ├── oMagma.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oWater.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMagma.xml │ │ ├── oMagmaMan.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oBomb.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMagmaMan.xml │ │ ├── oMagmaTrail.events │ │ │ ├── Animation end.xml │ │ │ └── Create.xml │ │ ├── oMagmaTrail.xml │ │ ├── oManTrap.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCaveman.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oDamsel.xml │ │ │ ├── Collision with oHawkman.xml │ │ │ ├── Collision with oShopkeeper.xml │ │ │ ├── Collision with oVampire.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Collision with oYeti.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oManTrap.xml │ │ ├── oMonkey.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMonkey.xml │ │ ├── oOlmec.events │ │ │ ├── Alarm 1.xml │ │ │ ├── Alarm 2.xml │ │ │ ├── Alarm 3.xml │ │ │ ├── Alarm 4.xml │ │ │ ├── Alarm 5.xml │ │ │ ├── Alarm 6.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oOlmec.xml │ │ ├── oOlmecDebris.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oOlmecDebris.xml │ │ ├── oOlmecSlam.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oSolid.xml │ │ │ └── Create.xml │ │ ├── oOlmecSlam.xml │ │ ├── oPiranha.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPiranha.xml │ │ ├── oScarab.events │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oScarab.xml │ │ ├── oSkeleton.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSkeleton.xml │ │ ├── oSnake.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSnake.xml │ │ ├── oSpider.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSpider.xml │ │ ├── oSpiderHang.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSpiderHang.xml │ │ ├── oTombLord.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oTombLord.xml │ │ ├── oUFO.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oUFO.xml │ │ ├── oUFOCrash.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oUFOCrash.xml │ │ ├── oVampire.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Collision with oBlood.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oVampire.xml │ │ ├── oYeti.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Collision with oWhipPre.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oYeti.xml │ │ ├── oYetiKing.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oYetiKing.xml │ │ ├── oZombie.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ └── oZombie.xml │ ├── Init │ │ ├── _resources.list.xml │ │ ├── oCheckBox.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox.xml │ │ ├── oCheckBox2.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox2.xml │ │ ├── oCheckBox3.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox3.xml │ │ ├── oCheckBox4.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oCheckBox4.xml │ │ ├── oJoyConfigButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oJoyConfigButton.xml │ │ ├── oKeyConfigButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oKeyConfigButton.xml │ │ ├── oOKButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oOKButton.xml │ │ ├── oRadioBox.events │ │ │ ├── Create.xml │ │ │ └── Mouse left button pressed.xml │ │ ├── oRadioBox.xml │ │ ├── oSlider1.events │ │ │ ├── Create.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Step.xml │ │ ├── oSlider1.xml │ │ ├── oSlider2.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Step.xml │ │ ├── oSlider2.xml │ │ └── oSliderBG.xml │ ├── Items │ │ ├── _resources.list.xml │ │ ├── oArrow.events │ │ │ ├── Alarm 1.xml │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oArrow.xml │ │ ├── oBall.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBall.xml │ │ ├── oBall2.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBall2.xml │ │ ├── oBasketball.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBasketball.xml │ │ ├── oBomb.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ ├── End Step.xml │ │ │ └── Step.xml │ │ ├── oBomb.xml │ │ ├── oBow.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBow.xml │ │ ├── oChain.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oChain.xml │ │ ├── oChain2.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oChain2.xml │ │ ├── oCrystalSkull.events │ │ │ └── Create.xml │ │ ├── oCrystalSkull.xml │ │ ├── oDice.events │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oDice.xml │ │ ├── oFireFrogBomb.events │ │ │ ├── Alarm 1.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFireFrogBomb.xml │ │ ├── oFishBone.events │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFishBone.xml │ │ ├── oFlare.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oFlare.xml │ │ ├── oGoldIdol.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oGoldIdol.xml │ │ ├── oJar.events │ │ │ ├── Collision with oBullet.xml │ │ │ ├── Collision with oWhip.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oJar.xml │ │ ├── oLampItem.events │ │ │ └── Create.xml │ │ ├── oLampItem.xml │ │ ├── oLampRedItem.events │ │ │ └── Create.xml │ │ ├── oLampRedItem.xml │ │ ├── oMachete.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMachete.xml │ │ ├── oMachetePre.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMachetePre.xml │ │ ├── oMattock.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMattock.xml │ │ ├── oMattockHead.events │ │ │ └── Create.xml │ │ ├── oMattockHead.xml │ │ ├── oMattockHit.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMattockHit.xml │ │ ├── oMattockPre.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oMattockPre.xml │ │ ├── oParachute.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oItem.xml │ │ │ └── Step.xml │ │ ├── oParachute.xml │ │ ├── oPistol.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPistol.xml │ │ ├── oRock.events │ │ │ └── Create.xml │ │ ├── oRock.xml │ │ ├── oRope.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oRope.xml │ │ ├── oRopeThrow.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oRopeThrow.xml │ │ ├── oRopeTop.events │ │ │ └── Create.xml │ │ ├── oRopeTop.xml │ │ ├── oSceptre.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSceptre.xml │ │ ├── oShotgun.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oShotgun.xml │ │ ├── oSkull.events │ │ │ ├── Collision with oBullet.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oSkull.xml │ │ ├── oSlash.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSlash.xml │ │ ├── oTeleporter.events │ │ │ └── Create.xml │ │ ├── oTeleporter.xml │ │ ├── oWebCannon.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oWebCannon.xml │ │ ├── oWhip.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oWhip.xml │ │ ├── oWhipPre.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ └── oWhipPre.xml │ ├── Level Editor │ │ ├── _resources.list.xml │ │ ├── oAlienBossTile.events │ │ │ └── Create.xml │ │ ├── oAlienBossTile.xml │ │ ├── oAlienTile.events │ │ │ └── Create.xml │ │ ├── oAlienTile.xml │ │ ├── oBatTile.xml │ │ ├── oBombBagTile.xml │ │ ├── oBombBoxTile.xml │ │ ├── oBombPasteTile.xml │ │ ├── oBonesTile.xml │ │ ├── oBowTile.xml │ │ ├── oCapeTile.xml │ │ ├── oCavemanTile.xml │ │ ├── oChestTile.xml │ │ ├── oCompassTile.xml │ │ ├── oCrateTile.xml │ │ ├── oCrystalSkullTile.xml │ │ ├── oDamselTile.xml │ │ ├── oDiamondTile.xml │ │ ├── oEditButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ ├── Mouse left button released.xml │ │ │ └── Step.xml │ │ ├── oEditButton.xml │ │ ├── oEmeraldBigTile.xml │ │ ├── oFireFrogTile.events │ │ │ └── Create.xml │ │ ├── oFireFrogTile.xml │ │ ├── oFrogTile.events │ │ │ └── Create.xml │ │ ├── oFrogTile.xml │ │ ├── oGiantSpiderTile.events │ │ │ └── Create.xml │ │ ├── oGiantSpiderTile.xml │ │ ├── oGlovesTile.xml │ │ ├── oGoldBarTile.xml │ │ ├── oGoldBarsTile.xml │ │ ├── oGoldIdolTile.xml │ │ ├── oHawkmanTile.xml │ │ ├── oIceTile.xml │ │ ├── oJarTile.xml │ │ ├── oJetpackTile.xml │ │ ├── oLavaTile.xml │ │ ├── oLoadButton.events │ │ │ ├── Create.xml │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ ├── Mouse left button released.xml │ │ │ └── Step.xml │ │ ├── oLoadButton.xml │ │ ├── oMacheteTile.xml │ │ ├── oManTrapTile.events │ │ │ └── Create.xml │ │ ├── oManTrapTile.xml │ │ ├── oMattockTile.xml │ │ ├── oMegaMouthTile.events │ │ │ └── Create.xml │ │ ├── oMegaMouthTile.xml │ │ ├── oMittTile.xml │ │ ├── oMonkeyTile.xml │ │ ├── oNewButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ ├── Mouse left button released.xml │ │ │ └── Step.xml │ │ ├── oNewButton.xml │ │ ├── oParachuteTile.xml │ │ ├── oPiranhaTile.xml │ │ ├── oPistolTile.xml │ │ ├── oRockTile.xml │ │ ├── oRopePileTile.xml │ │ ├── oRubyBigTile.xml │ │ ├── oSapphireBigTile.xml │ │ ├── oShopkeeperTile.xml │ │ ├── oShotgunTile.xml │ │ ├── oSkeletonTile.xml │ │ ├── oSmashTrapTile.xml │ │ ├── oSnakeTile.xml │ │ ├── oSpearTrapTileBot.xml │ │ ├── oSpearTrapTileTop.xml │ │ ├── oSpectaclesTile.xml │ │ ├── oSpiderTile.xml │ │ ├── oSpikeShoesTile.xml │ │ ├── oSpringShoesTile.xml │ │ ├── oSpringTrapTile.xml │ │ ├── oTeleporterTile.xml │ │ ├── oTestButton.events │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ ├── Mouse left button released.xml │ │ │ └── Step.xml │ │ ├── oTestButton.xml │ │ ├── oTombLordTile.events │ │ │ └── Create.xml │ │ ├── oTombLordTile.xml │ │ ├── oUFOTile.events │ │ │ └── Create.xml │ │ ├── oUFOTile.xml │ │ ├── oVampireTile.events │ │ │ └── Create.xml │ │ ├── oVampireTile.xml │ │ ├── oWaterTile.xml │ │ ├── oWebCannonTile.xml │ │ ├── oWebTile.xml │ │ ├── oYetiKingTile.events │ │ │ └── Create.xml │ │ ├── oYetiKingTile.xml │ │ ├── oYetiTile.xml │ │ ├── oZombieTile.events │ │ │ └── Create.xml │ │ └── oZombieTile.xml │ ├── Other │ │ ├── End │ │ │ ├── _resources.list.xml │ │ │ ├── oBGEnd3.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oBGEnd3.xml │ │ │ ├── oBigChest.xml │ │ │ ├── oBigTreasure.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oBigTreasure.xml │ │ │ ├── oEnd2BG.xml │ │ │ ├── oEndPlat.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oEndPlat.xml │ │ │ ├── oEndWall.xml │ │ │ ├── oLavaSpray.events │ │ │ │ ├── Alarm 0.xml │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oLavaSpray.xml │ │ │ ├── oPlayerSil.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oPlayerSil.xml │ │ │ ├── oTreasureSil.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ └── oTreasureSil.xml │ │ ├── Intro │ │ │ ├── _resources.list.xml │ │ │ ├── oBatIntro.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oBatIntro.xml │ │ │ ├── oCamel.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oCamel.xml │ │ │ ├── oCaravan.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oCaravan.xml │ │ │ ├── oDesert.events │ │ │ │ └── Create.xml │ │ │ ├── oDesert.xml │ │ │ ├── oDesert2.events │ │ │ │ └── Create.xml │ │ │ ├── oDesert2.xml │ │ │ ├── oDesertScroll.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oDesertScroll.xml │ │ │ ├── oDesertScroll2.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oDesertScroll2.xml │ │ │ ├── oDesertTop.events │ │ │ │ └── Create.xml │ │ │ ├── oDesertTop.xml │ │ │ ├── oDesertTopScroll.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oDesertTopScroll.xml │ │ │ ├── oIntroBG.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oIntroBG.xml │ │ │ ├── oMoon.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oMoon.xml │ │ │ ├── oPalmTree.xml │ │ │ ├── oPalmTreeDark.xml │ │ │ ├── oPalmTreeScroll.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oPalmTreeScroll.xml │ │ │ ├── oShrub.xml │ │ │ ├── oShrubDark.xml │ │ │ ├── oShrubScroll.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ └── oShrubScroll.xml │ │ ├── Title │ │ │ ├── _resources.list.xml │ │ │ ├── oBasket.events │ │ │ │ └── Animation end.xml │ │ │ ├── oBasket.xml │ │ │ ├── oBatTarget.events │ │ │ │ ├── Collision with oArrow.xml │ │ │ │ ├── Collision with oCharacter.xml │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oBatTarget.xml │ │ │ ├── oButtonHighscore.events │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oButtonHighscore.xml │ │ │ ├── oCopy.xml │ │ │ ├── oLevel13Sign.xml │ │ │ ├── oLevel5Sign.xml │ │ │ ├── oLevel9Sign.xml │ │ │ ├── oMultiTrophy.xml │ │ │ ├── oNew.xml │ │ │ ├── oQuitSign.xml │ │ │ ├── oResetSign.xml │ │ │ ├── oRim.xml │ │ │ ├── oRimDeflect.xml │ │ │ ├── oScoresSign.xml │ │ │ ├── oStartSign.xml │ │ │ ├── oTarget.events │ │ │ │ ├── Collision with oArrow.xml │ │ │ │ ├── Create.xml │ │ │ │ └── Step.xml │ │ │ ├── oTarget.xml │ │ │ ├── oTitleBG.xml │ │ │ ├── oTitleLogo.xml │ │ │ ├── oTrophy.xml │ │ │ ├── oTutorialSign.xml │ │ │ ├── oXChange.xml │ │ │ ├── oXChange2.xml │ │ │ ├── oXEnd.xml │ │ │ ├── oXMoon.xml │ │ │ ├── oXScores.xml │ │ │ ├── oXShortcut13.xml │ │ │ ├── oXShortcut5.xml │ │ │ ├── oXShortcut9.xml │ │ │ ├── oXStars.xml │ │ │ ├── oXStart.xml │ │ │ ├── oXSun.xml │ │ │ ├── oXTitle.xml │ │ │ └── oXTutorial.xml │ │ ├── _resources.list.xml │ │ ├── oBlack.xml │ │ ├── oBlackBG.xml │ │ ├── oCaveUp.xml │ │ ├── oHintHand.events │ │ │ ├── Create.xml │ │ │ └── Draw.xml │ │ ├── oHintHand.xml │ │ ├── oMenuBottom.xml │ │ ├── oMenuLL.xml │ │ ├── oMenuLR.xml │ │ ├── oMenuLeft.xml │ │ ├── oMenuRight.xml │ │ ├── oMenuSel.events │ │ │ └── Mouse left button released.xml │ │ ├── oMenuSel.xml │ │ ├── oMenuTop.xml │ │ ├── oMenuUL.xml │ │ ├── oMenuUR.xml │ │ ├── oPDummy.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Alarm 2.xml │ │ │ ├── Alarm 3.xml │ │ │ ├── Alarm 4.xml │ │ │ ├── Alarm 5.xml │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oPDummy.xml │ │ ├── oPDummy2.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oPDummy2.xml │ │ ├── oPDummy3.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ ├── Draw.xml │ │ │ └── Step.xml │ │ ├── oPDummy3.xml │ │ ├── oPDummy4.events │ │ │ ├── Alarm 2.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPDummy4.xml │ │ ├── oPDummy5.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oPDummy5.xml │ │ ├── oPDummy6.events │ │ │ ├── Create.xml │ │ │ └── Draw.xml │ │ ├── oPDummy6.xml │ │ ├── oPageDown.events │ │ │ ├── Key down pressed.xml │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oPageDown.xml │ │ ├── oPageUp.events │ │ │ ├── Key up pressed.xml │ │ │ ├── Mouse leave.xml │ │ │ ├── Mouse left button pressed.xml │ │ │ └── Mouse left button released.xml │ │ ├── oPageUp.xml │ │ ├── oWalDamsel.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ └── oWalDamsel.xml │ ├── Traps │ │ ├── _resources.list.xml │ │ ├── oArrowRepeaterL.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oArrowRepeaterL.xml │ │ ├── oArrowRepeaterR.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oArrowRepeaterR.xml │ │ ├── oArrowTrapLeft.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oArrowTrapLeft.xml │ │ ├── oArrowTrapLeftLit.xml │ │ ├── oArrowTrapRight.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Alarm 1.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oArrowTrapRight.xml │ │ ├── oArrowTrapRightLit.xml │ │ ├── oArrowTrapTest.events │ │ │ ├── Collision with oBoulder.xml │ │ │ ├── Collision with oCharacter.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Collision with oMoveableSolid.xml │ │ │ ├── Collision with oTreasure.xml │ │ │ └── Create.xml │ │ ├── oArrowTrapTest.xml │ │ ├── oBoulder.events │ │ │ ├── Collision with oSolid.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oBoulder.xml │ │ ├── oCeilingTrap.events │ │ │ ├── Animation end.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oCeilingTrap.xml │ │ ├── oDoor.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oDoor.xml │ │ ├── oGiantTikiHead.events │ │ │ └── Alarm 0.xml │ │ ├── oGiantTikiHead.xml │ │ ├── oSmashTrap.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oSmashTrap.xml │ │ ├── oSmashTrapLit.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oSmashTrapLit.xml │ │ ├── oSpearTrapBottom.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oSpearTrapBottom.xml │ │ ├── oSpearTrapLit.xml │ │ ├── oSpearTrapTop.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ ├── oSpearTrapTop.xml │ │ ├── oSpearsLeft.events │ │ │ ├── Animation end.xml │ │ │ └── Step.xml │ │ ├── oSpearsLeft.xml │ │ ├── oSpikes.events │ │ │ └── Create.xml │ │ ├── oSpikes.xml │ │ ├── oSpringTrap.events │ │ │ ├── Animation end.xml │ │ │ ├── Collision with oEnemy.xml │ │ │ ├── Collision with oItem.xml │ │ │ ├── Collision with oPlayer1.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oSpringTrap.xml │ │ ├── oTemp.events │ │ │ ├── Alarm 0.xml │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oTemp.xml │ │ ├── oThwompTrap.events │ │ │ ├── Create.xml │ │ │ └── Step.xml │ │ ├── oThwompTrap.xml │ │ ├── oTrapBlock.events │ │ │ ├── Create.xml │ │ │ ├── Destroy.xml │ │ │ └── Step.xml │ │ └── oTrapBlock.xml │ ├── _resources.list.xml │ ├── oBricks.events │ │ └── Create.xml │ ├── oBricks.xml │ ├── oCredits1.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Alarm 4.xml │ │ ├── Alarm 5.xml │ │ ├── Alarm 6.xml │ │ ├── Alarm 7.xml │ │ ├── Alarm 8.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oCredits1.xml │ ├── oCredits2.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Alarm 4.xml │ │ ├── Alarm 5.xml │ │ ├── Alarm 6.xml │ │ ├── Alarm 7.xml │ │ ├── Alarm 8.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oCredits2.xml │ ├── oCursObj.events │ │ ├── Create.xml │ │ └── Step.xml │ ├── oCursObj.xml │ ├── oEnd.events │ │ ├── Create.xml │ │ ├── Room End.xml │ │ └── Step.xml │ ├── oEnd.xml │ ├── oEnd2.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 2.xml │ │ ├── Create.xml │ │ └── Step.xml │ ├── oEnd2.xml │ ├── oEnd3.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Alarm 4.xml │ │ ├── Alarm 5.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oEnd3.xml │ ├── oEndCustom.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Alarm 4.xml │ │ ├── Alarm 5.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oEndCustom.xml │ ├── oFinalBoss.events │ │ ├── Create.xml │ │ └── Step.xml │ ├── oFinalBoss.xml │ ├── oGame.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 2.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key M pressed.xml │ │ └── Step.xml │ ├── oGame.xml │ ├── oGamepad.events │ │ ├── Create.xml │ │ └── Step.xml │ ├── oGamepad.xml │ ├── oGlobals.events │ │ └── Create.xml │ ├── oGlobals.xml │ ├── oHighscores.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oHighscores.xml │ ├── oIntro.events │ │ ├── Alarm 10.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 8.xml │ │ ├── Alarm 9.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oIntro.xml │ ├── oJoyConfig.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Room End.xml │ │ └── Step.xml │ ├── oJoyConfig.xml │ ├── oKeyConfig.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key any key pressed.xml │ │ └── Room End.xml │ ├── oKeyConfig.xml │ ├── oLevel.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Room End.xml │ │ └── Step.xml │ ├── oLevel.xml │ ├── oLevelEditor.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key 1 pressed.xml │ │ ├── Key 2 pressed.xml │ │ ├── Key 3 pressed.xml │ │ ├── Key 4 pressed.xml │ │ ├── Key A pressed.xml │ │ ├── Key N pressed.xml │ │ ├── Key S pressed.xml │ │ ├── Key Y pressed.xml │ │ ├── Key any key pressed.xml │ │ ├── Key escape pressed.xml │ │ ├── Mouse wheel down.xml │ │ ├── Mouse wheel up.xml │ │ └── Step.xml │ ├── oLevelEditor.xml │ ├── oLoadLevel.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key any key pressed.xml │ │ └── Step.xml │ ├── oLoadLevel.xml │ ├── oMoonRoom.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 10.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Alarm 9.xml │ │ ├── Create.xml │ │ └── Draw.xml │ ├── oMoonRoom.xml │ ├── oMusic.events │ │ ├── Create.xml │ │ └── Game End.xml │ ├── oMusic.xml │ ├── oPlayer1.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 10.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Alarm 4.xml │ │ ├── Animation end.xml │ │ ├── Collision with oBlood.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── End Step.xml │ │ ├── Key backspace pressed.xml │ │ ├── Key enter pressed.xml │ │ └── Step.xml │ ├── oPlayer1.xml │ ├── oRoom.xml │ ├── oScreen.events │ │ ├── Begin Step.xml │ │ ├── Close Button.xml │ │ ├── Create.xml │ │ ├── End Step.xml │ │ ├── Game End.xml │ │ ├── Key f1 pressed.xml │ │ ├── Key f10 pressed.xml │ │ ├── Room End.xml │ │ └── Room Start.xml │ ├── oScreen.xml │ ├── oSprite.events │ │ └── Create.xml │ ├── oSprite.xml │ ├── oStarsRoom.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 10.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Create.xml │ │ └── Draw.xml │ ├── oStarsRoom.xml │ ├── oSunRoom.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 10.xml │ │ ├── Alarm 11.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oSunRoom.xml │ ├── oTitle.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Alarm 2.xml │ │ ├── Alarm 3.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Key f2 pressed.xml │ │ ├── Key f3 pressed.xml │ │ └── Step.xml │ ├── oTitle.xml │ ├── oTransition.events │ │ ├── Alarm 0.xml │ │ ├── Alarm 1.xml │ │ ├── Create.xml │ │ ├── Draw.xml │ │ └── Step.xml │ ├── oTransition.xml │ └── supersound │ │ ├── _resources.list.xml │ │ ├── core.events │ │ ├── Create.xml │ │ ├── Draw.xml │ │ ├── Game End.xml │ │ └── Mouse unknown 12.xml │ │ ├── core.xml │ │ ├── mascara.events │ │ └── Create.xml │ │ ├── mascara.xml │ │ └── mascara2.xml ├── Paths │ └── _resources.list.xml ├── Rooms │ ├── _resources.list.xml │ ├── rCredits1.xml │ ├── rCredits2.xml │ ├── rEnd.xml │ ├── rEnd2.xml │ ├── rEnd3.xml │ ├── rEndCustom.xml │ ├── rHighscores.xml │ ├── rIntro.xml │ ├── rJoyConfig.xml │ ├── rKeyConfig.xml │ ├── rLevel.xml │ ├── rLevel2.xml │ ├── rLevel3.xml │ ├── rLevelEditor.xml │ ├── rLoadLevel.xml │ ├── rMoon.xml │ ├── rOlmec.xml │ ├── rScreenInit.xml │ ├── rStars.xml │ ├── rSun.xml │ ├── rTitle.xml │ ├── rTransition1.xml │ ├── rTransition1x.xml │ ├── rTransition2.xml │ ├── rTransition2x.xml │ ├── rTransition3.xml │ ├── rTransition3x.xml │ ├── rTransition4.xml │ ├── rTutorial.xml │ └── supersound │ │ ├── _resources.list.xml │ │ └── room0.xml ├── Scripts │ ├── Audio │ │ ├── _resources.list.xml │ │ ├── playMusic.gml │ │ ├── playSound.gml │ │ ├── scrMusicFade.gml │ │ ├── startMusic.gml │ │ ├── stopAllMusic.gml │ │ └── supersound │ │ │ ├── Advanced │ │ │ ├── SS_GetSoundBytesPerSecond.gml │ │ │ ├── SS_GetSoundFreq.gml │ │ │ ├── SS_GetSoundLength.gml │ │ │ ├── SS_GetSoundPan.gml │ │ │ ├── SS_GetSoundPosition.gml │ │ │ ├── SS_GetSoundVol.gml │ │ │ ├── SS_IsHandleValid.gml │ │ │ ├── SS_IsSoundLooping.gml │ │ │ ├── SS_IsSoundPaused.gml │ │ │ ├── SS_IsSoundPlaying.gml │ │ │ ├── SS_PauseSound.gml │ │ │ ├── SS_ResumeSound.gml │ │ │ ├── SS_SetSoundPosition.gml │ │ │ └── _resources.list.xml │ │ │ ├── SS_FreeSound.gml │ │ │ ├── SS_Init.gml │ │ │ ├── SS_LoadSound.gml │ │ │ ├── SS_LoopSound.gml │ │ │ ├── SS_PlaySound.gml │ │ │ ├── SS_SetSoundFreq.gml │ │ │ ├── SS_SetSoundPan.gml │ │ │ ├── SS_SetSoundVol.gml │ │ │ ├── SS_StopSound.gml │ │ │ ├── SS_Unload.gml │ │ │ └── _resources.list.xml │ ├── Character │ │ ├── _resources.list.xml │ │ ├── scrDropItem.gml │ │ ├── scrFireBow.gml │ │ ├── scrHoldItem.gml │ │ ├── scrPlayerIsDucking.gml │ │ ├── scrStealItem.gml │ │ └── scrUseItem.gml │ ├── Collision │ │ ├── _resources.list.xml │ │ ├── canLandOnPlatforms.gml │ │ ├── canPushMoveableSolids.gml │ │ ├── getIdCollisionCharacter.gml │ │ ├── hidden │ │ │ ├── _resources.list.xml │ │ │ ├── approximatelyZero.gml │ │ │ ├── calculateCollisionBounds.gml │ │ │ └── isCollisionRectangle.gml │ │ ├── horizontal │ │ │ ├── _resources.list.xml │ │ │ ├── getIdCollisionLeft.gml │ │ │ ├── getIdCollisionRight.gml │ │ │ ├── isCollisionCharacterLeft.gml │ │ │ ├── isCollisionCharacterRight.gml │ │ │ ├── isCollisionLeft.gml │ │ │ ├── isCollisionMoveableSolidLeft.gml │ │ │ ├── isCollisionMoveableSolidRight.gml │ │ │ └── isCollisionRight.gml │ │ ├── isCollisionCharacter.gml │ │ ├── isCollisionLadder.gml │ │ ├── isCollisionPlatform.gml │ │ ├── isCollisionSolid.gml │ │ ├── setCollisionBounds.gml │ │ └── vertical │ │ │ ├── _resources.list.xml │ │ │ ├── getIdCollisionCharacterTop.gml │ │ │ ├── isCollisionBottom.gml │ │ │ ├── isCollisionCharacterBottom.gml │ │ │ ├── isCollisionCharacterTop.gml │ │ │ ├── isCollisionMovingSolidBottom.gml │ │ │ ├── isCollisionPlatformBottom.gml │ │ │ ├── isCollisionTop.gml │ │ │ └── isCollisionWaterTop.gml │ ├── Control │ │ ├── _resources.list.xml │ │ ├── checkAttack.gml │ │ ├── checkAttackPressed.gml │ │ ├── checkAttackReleased.gml │ │ ├── checkBombPressed.gml │ │ ├── checkDown.gml │ │ ├── checkDownPressed.gml │ │ ├── checkFlarePressed.gml │ │ ├── checkItemPressed.gml │ │ ├── checkJoyButton.gml │ │ ├── checkJump.gml │ │ ├── checkJumpPressed.gml │ │ ├── checkJumpReleased.gml │ │ ├── checkLeft.gml │ │ ├── checkLeftPressed.gml │ │ ├── checkLeftReleased.gml │ │ ├── checkPayPressed.gml │ │ ├── checkRight.gml │ │ ├── checkRightPressed.gml │ │ ├── checkRightReleased.gml │ │ ├── checkRopePressed.gml │ │ ├── checkRun.gml │ │ ├── checkStartPressed.gml │ │ ├── checkUp.gml │ │ └── checkUpPressed.gml │ ├── Highscores │ │ ├── _resources.list.xml │ │ ├── scrGetScore.gml │ │ ├── scrImportHighscores.gml │ │ ├── scrResetHighscores.gml │ │ ├── scrSpelunkyPortableReadMe.gml │ │ ├── scrUpdateHighscores.gml │ │ └── scrXORScores.gml │ ├── In Level │ │ ├── _resources.list.xml │ │ ├── getKissValue.gml │ │ ├── isInShop.gml │ │ ├── isLevel.gml │ │ ├── isRealLevel.gml │ │ ├── isRoom.gml │ │ ├── scrShake.gml │ │ └── scrShopkeeperAnger.gml │ ├── Level Editor │ │ ├── _resources.list.xml │ │ ├── scrCreateTile.gml │ │ ├── scrCreateTileObj.gml │ │ ├── scrLoadLevel.gml │ │ ├── scrSetCursorTile.gml │ │ └── scrTestLevel.gml │ ├── Level Generation │ │ ├── _resources.list.xml │ │ ├── scrCheckWaterTop.gml │ │ ├── scrEntityGen.gml │ │ ├── scrGenerateItem.gml │ │ ├── scrGetName.gml │ │ ├── scrGetRoomX.gml │ │ ├── scrGetRoomY.gml │ │ ├── scrInitLevel.gml │ │ ├── scrLevelGen.gml │ │ ├── scrRoomGen.gml │ │ ├── scrRoomGen2.gml │ │ ├── scrRoomGen3.gml │ │ ├── scrRoomGen4.gml │ │ ├── scrRoomGen5.gml │ │ ├── scrRoomGenMarket.gml │ │ ├── scrRoomGenYeti.gml │ │ ├── scrSetupWalls.gml │ │ ├── scrShopItemsGen.gml │ │ └── scrTreasureGen.gml │ ├── Platform Engine │ │ ├── _resources.list.xml │ │ ├── characterCreateEvent.gml │ │ ├── characterDrawEvent.gml │ │ ├── characterSprite.gml │ │ ├── characterStepEvent.gml │ │ ├── gameStepEvent.gml │ │ ├── makeActive.gml │ │ ├── moveTo.gml │ │ ├── platformCharacterIs.gml │ │ └── scrMoveableSolidRecurseDrop.gml │ ├── Stat Tracking │ │ ├── _resources.list.xml │ │ ├── scrReadStats.gml │ │ └── scrWriteStats.gml │ ├── _resources.list.xml │ ├── rand.gml │ ├── scrCheckCollisions.gml │ ├── scrClearGlobals.gml │ ├── scrCreateBlood.gml │ ├── scrCreateFlame.gml │ ├── scrDrawHUD.gml │ ├── scrGetChar.gml │ ├── scrGetFavorMsg.gml │ ├── scrGetJoy.gml │ ├── scrGetKey.gml │ └── scrInit.gml ├── Sounds │ └── _resources.list.xml ├── Sprites │ ├── Blocks │ │ ├── Alien │ │ │ ├── _resources.list.xml │ │ │ ├── sAlienFloor.images │ │ │ │ └── image 0.png │ │ │ ├── sAlienFloor.xml │ │ │ ├── sAlienFront.images │ │ │ │ └── image 0.png │ │ │ ├── sAlienFront.xml │ │ │ ├── sAlienFront2.images │ │ │ │ └── image 0.png │ │ │ ├── sAlienFront2.xml │ │ │ ├── sAlienFront3.images │ │ │ │ └── image 0.png │ │ │ ├── sAlienFront3.xml │ │ │ ├── sAlienTop.images │ │ │ │ └── image 0.png │ │ │ ├── sAlienTop.xml │ │ │ ├── sBarrier.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sBarrier.xml │ │ │ ├── sBarrierEmitter.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ └── sBarrierEmitter.xml │ │ ├── Altars │ │ │ ├── _resources.list.xml │ │ │ ├── sAltarLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sAltarLeft.xml │ │ │ ├── sAltarRight.images │ │ │ │ └── image 0.png │ │ │ ├── sAltarRight.xml │ │ │ ├── sSacAltar.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sSacAltar.xml │ │ │ ├── sSacAltarLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sSacAltarLeft.xml │ │ │ ├── sSacAltarRight.images │ │ │ │ └── image 0.png │ │ │ ├── sSacAltarRight.xml │ │ │ ├── sSkullBlock.images │ │ │ │ └── image 0.png │ │ │ └── sSkullBlock.xml │ │ ├── Background │ │ │ ├── _resources.list.xml │ │ │ ├── sCaveBG.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBG.xml │ │ │ ├── sCaveBG1.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBG1.xml │ │ │ ├── sCaveBG2.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBG2.xml │ │ │ ├── sCaveBGEntrance.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBGEntrance.xml │ │ │ ├── sEntrance.images │ │ │ │ └── image 0.png │ │ │ ├── sEntrance.xml │ │ │ ├── sExit.images │ │ │ │ └── image 0.png │ │ │ ├── sExit.xml │ │ │ ├── sGoldDoor.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldDoor.xml │ │ │ ├── sMsgSign.images │ │ │ │ └── image 0.png │ │ │ └── sMsgSign.xml │ │ ├── Dark │ │ │ ├── _resources.list.xml │ │ │ ├── sDark.images │ │ │ │ └── image 0.png │ │ │ ├── sDark.xml │ │ │ ├── sDarkBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkBottom.xml │ │ │ ├── sDarkDown.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkDown.xml │ │ │ ├── sDarkFall.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkFall.xml │ │ │ ├── sDarkGold.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkGold.xml │ │ │ ├── sDarkGoldBig.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkGoldBig.xml │ │ │ ├── sDarkLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkLeft.xml │ │ │ ├── sDarkPlat.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkPlat.xml │ │ │ ├── sDarkRight.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkRight.xml │ │ │ ├── sDarkSmooth.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkSmooth.xml │ │ │ ├── sDarkTop.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkTop.xml │ │ │ ├── sDarkTop2.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkTop2.xml │ │ │ ├── sDarkUp.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkUp.xml │ │ │ ├── sDarkUp2.images │ │ │ │ └── image 0.png │ │ │ ├── sDarkUp2.xml │ │ │ ├── sIce.images │ │ │ │ └── image 0.png │ │ │ ├── sIce.xml │ │ │ ├── sIceBlock.images │ │ │ │ └── image 0.png │ │ │ ├── sIceBlock.xml │ │ │ ├── sIceBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sIceBottom.xml │ │ │ ├── sIceBottom2.images │ │ │ │ └── image 0.png │ │ │ ├── sIceBottom2.xml │ │ │ ├── sIceCaveman.images │ │ │ │ └── image 0.png │ │ │ ├── sIceCaveman.xml │ │ │ ├── sIceDL.images │ │ │ │ └── image 0.png │ │ │ ├── sIceDL.xml │ │ │ ├── sIceDLR.images │ │ │ │ └── image 0.png │ │ │ ├── sIceDLR.xml │ │ │ ├── sIceDR.images │ │ │ │ └── image 0.png │ │ │ ├── sIceDR.xml │ │ │ ├── sIceDown.images │ │ │ │ └── image 0.png │ │ │ ├── sIceDown.xml │ │ │ ├── sIceLR.images │ │ │ │ └── image 0.png │ │ │ ├── sIceLR.xml │ │ │ ├── sIceLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sIceLeft.xml │ │ │ ├── sIceRight.images │ │ │ │ └── image 0.png │ │ │ ├── sIceRight.xml │ │ │ ├── sIceUDL.images │ │ │ │ └── image 0.png │ │ │ ├── sIceUDL.xml │ │ │ ├── sIceUDR.images │ │ │ │ └── image 0.png │ │ │ ├── sIceUDR.xml │ │ │ ├── sIceUL.images │ │ │ │ └── image 0.png │ │ │ ├── sIceUL.xml │ │ │ ├── sIceULR.images │ │ │ │ └── image 0.png │ │ │ ├── sIceULR.xml │ │ │ ├── sIceUR.images │ │ │ │ └── image 0.png │ │ │ ├── sIceUR.xml │ │ │ ├── sIceUp.images │ │ │ │ └── image 0.png │ │ │ ├── sIceUp.xml │ │ │ ├── sIceUp2.images │ │ │ │ └── image 0.png │ │ │ ├── sIceUp2.xml │ │ │ ├── sMoai.images │ │ │ │ └── image 0.png │ │ │ ├── sMoai.xml │ │ │ ├── sMoai2.images │ │ │ │ └── image 0.png │ │ │ ├── sMoai2.xml │ │ │ ├── sMoai3.images │ │ │ │ └── image 0.png │ │ │ ├── sMoai3.xml │ │ │ ├── sMoaiInside.images │ │ │ │ └── image 0.png │ │ │ ├── sMoaiInside.xml │ │ │ ├── sThinIce1.images │ │ │ │ └── image 0.png │ │ │ ├── sThinIce1.xml │ │ │ ├── sThinIce2.images │ │ │ │ └── image 0.png │ │ │ ├── sThinIce2.xml │ │ │ ├── sThinIce3.images │ │ │ │ └── image 0.png │ │ │ ├── sThinIce3.xml │ │ │ ├── sThinIce4.images │ │ │ │ └── image 0.png │ │ │ ├── sThinIce4.xml │ │ │ ├── sThinIce5.images │ │ │ │ └── image 0.png │ │ │ ├── sThinIce5.xml │ │ │ ├── sThinIce6.images │ │ │ │ └── image 0.png │ │ │ └── sThinIce6.xml │ │ ├── Gold │ │ │ ├── _resources.list.xml │ │ │ ├── sGold.images │ │ │ │ └── image 0.png │ │ │ ├── sGold.xml │ │ │ ├── sGoldBig.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldBig.xml │ │ │ ├── sGoldBlock.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldBlock.xml │ │ │ ├── sLadyXoc.images │ │ │ │ └── image 0.png │ │ │ └── sLadyXoc.xml │ │ ├── Graves │ │ │ ├── _resources.list.xml │ │ │ ├── sGrave.images │ │ │ │ └── image 0.png │ │ │ ├── sGrave.xml │ │ │ ├── sGrave2.images │ │ │ │ └── image 0.png │ │ │ ├── sGrave2.xml │ │ │ ├── sGrave3.images │ │ │ │ └── image 0.png │ │ │ ├── sGrave3.xml │ │ │ ├── sGrave4.images │ │ │ │ └── image 0.png │ │ │ ├── sGrave4.xml │ │ │ ├── sGrave5.images │ │ │ │ └── image 0.png │ │ │ ├── sGrave5.xml │ │ │ ├── sGrave6.images │ │ │ │ └── image 0.png │ │ │ ├── sGrave6.xml │ │ │ ├── sGraveAsh.images │ │ │ │ └── image 0.png │ │ │ └── sGraveAsh.xml │ │ ├── Ladders │ │ │ ├── _resources.list.xml │ │ │ ├── sLadder.images │ │ │ │ └── image 0.png │ │ │ ├── sLadder.xml │ │ │ ├── sLadderTop.images │ │ │ │ └── image 0.png │ │ │ ├── sLadderTop.xml │ │ │ ├── sVine.images │ │ │ │ └── image 0.png │ │ │ ├── sVine.xml │ │ │ ├── sVineBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sVineBottom.xml │ │ │ ├── sVineSource.images │ │ │ │ └── image 0.png │ │ │ ├── sVineSource.xml │ │ │ ├── sVineTop.images │ │ │ │ └── image 0.png │ │ │ └── sVineTop.xml │ │ ├── Lush │ │ │ ├── _resources.list.xml │ │ │ ├── sLeaves.images │ │ │ │ └── image 0.png │ │ │ ├── sLeaves.xml │ │ │ ├── sLeavesDead.images │ │ │ │ └── image 0.png │ │ │ ├── sLeavesDead.xml │ │ │ ├── sLeavesDeadR.images │ │ │ │ └── image 0.png │ │ │ ├── sLeavesDeadR.xml │ │ │ ├── sLeavesRight.images │ │ │ │ └── image 0.png │ │ │ ├── sLeavesRight.xml │ │ │ ├── sLeavesTop.images │ │ │ │ └── image 0.png │ │ │ ├── sLeavesTop.xml │ │ │ ├── sLush.images │ │ │ │ └── image 0.png │ │ │ ├── sLush.xml │ │ │ ├── sLushBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sLushBottom.xml │ │ │ ├── sLushBottom2.images │ │ │ │ └── image 0.png │ │ │ ├── sLushBottom2.xml │ │ │ ├── sLushDown.images │ │ │ │ └── image 0.png │ │ │ ├── sLushDown.xml │ │ │ ├── sLushGold.images │ │ │ │ └── image 0.png │ │ │ ├── sLushGold.xml │ │ │ ├── sLushGoldBig.images │ │ │ │ └── image 0.png │ │ │ ├── sLushGoldBig.xml │ │ │ ├── sLushLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sLushLeft.xml │ │ │ ├── sLushRight.images │ │ │ │ └── image 0.png │ │ │ ├── sLushRight.xml │ │ │ ├── sLushSmooth.images │ │ │ │ └── image 0.png │ │ │ ├── sLushSmooth.xml │ │ │ ├── sLushTop.images │ │ │ │ └── image 0.png │ │ │ ├── sLushTop.xml │ │ │ ├── sLushTop2.images │ │ │ │ └── image 0.png │ │ │ ├── sLushTop2.xml │ │ │ ├── sLushUp.images │ │ │ │ └── image 0.png │ │ │ ├── sLushUp.xml │ │ │ ├── sLushUp2.images │ │ │ │ └── image 0.png │ │ │ ├── sLushUp2.xml │ │ │ ├── sLushUp3.images │ │ │ │ └── image 0.png │ │ │ ├── sLushUp3.xml │ │ │ ├── sTikiTorch.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sTikiTorch.xml │ │ │ ├── sTreeBranchDeadL.images │ │ │ │ └── image 0.png │ │ │ ├── sTreeBranchDeadL.xml │ │ │ ├── sTreeBranchDeadR.images │ │ │ │ └── image 0.png │ │ │ ├── sTreeBranchDeadR.xml │ │ │ ├── sTreeBranchLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sTreeBranchLeft.xml │ │ │ ├── sTreeBranchRight.images │ │ │ │ └── image 0.png │ │ │ ├── sTreeBranchRight.xml │ │ │ ├── sTreeTop.images │ │ │ │ └── image 0.png │ │ │ ├── sTreeTop.xml │ │ │ ├── sTreeTopDead.images │ │ │ │ └── image 0.png │ │ │ ├── sTreeTopDead.xml │ │ │ ├── sTreeTrunk.images │ │ │ │ └── image 0.png │ │ │ └── sTreeTrunk.xml │ │ ├── Mines │ │ │ ├── _resources.list.xml │ │ │ ├── sBlock.images │ │ │ │ └── image 0.png │ │ │ ├── sBlock.xml │ │ │ ├── sBrick.images │ │ │ │ └── image 0.png │ │ │ ├── sBrick.xml │ │ │ ├── sBrick2.images │ │ │ │ └── image 0.png │ │ │ ├── sBrick2.xml │ │ │ ├── sBrickDown.images │ │ │ │ └── image 0.png │ │ │ ├── sBrickDown.xml │ │ │ ├── sBrickGold.images │ │ │ │ └── image 0.png │ │ │ ├── sBrickGold.xml │ │ │ ├── sBrickGoldBig.images │ │ │ │ └── image 0.png │ │ │ ├── sBrickGoldBig.xml │ │ │ ├── sCaveBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBottom.xml │ │ │ ├── sCaveBottomL.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBottomL.xml │ │ │ ├── sCaveBottomR.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveBottomR.xml │ │ │ ├── sCaveLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveLeft.xml │ │ │ ├── sCaveRight.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveRight.xml │ │ │ ├── sCaveSmooth.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveSmooth.xml │ │ │ ├── sCaveTop.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveTop.xml │ │ │ ├── sCaveTop2.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveTop2.xml │ │ │ ├── sCaveUp.images │ │ │ │ └── image 0.png │ │ │ ├── sCaveUp.xml │ │ │ ├── sCaveUp2.images │ │ │ │ └── image 0.png │ │ │ └── sCaveUp2.xml │ │ ├── Shop │ │ │ ├── _resources.list.xml │ │ │ ├── sLamp.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sLamp.xml │ │ │ ├── sLampRed.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sLampRed.xml │ │ │ ├── sSign.images │ │ │ │ └── image 0.png │ │ │ ├── sSign.xml │ │ │ ├── sSignBomb.images │ │ │ │ └── image 0.png │ │ │ ├── sSignBomb.xml │ │ │ ├── sSignClothing.images │ │ │ │ └── image 0.png │ │ │ ├── sSignClothing.xml │ │ │ ├── sSignCraps.images │ │ │ │ └── image 0.png │ │ │ ├── sSignCraps.xml │ │ │ ├── sSignGeneral.images │ │ │ │ └── image 0.png │ │ │ ├── sSignGeneral.xml │ │ │ ├── sSignKissing.images │ │ │ │ └── image 0.png │ │ │ ├── sSignKissing.xml │ │ │ ├── sSignRare.images │ │ │ │ └── image 0.png │ │ │ ├── sSignRare.xml │ │ │ ├── sSignWeapon.images │ │ │ │ └── image 0.png │ │ │ └── sSignWeapon.xml │ │ ├── Temple │ │ │ ├── _resources.list.xml │ │ │ ├── sButton.images │ │ │ │ └── image 0.png │ │ │ ├── sButton.xml │ │ │ ├── sButtonPushed.images │ │ │ │ └── image 0.png │ │ │ ├── sButtonPushed.xml │ │ │ ├── sGTemple.images │ │ │ │ └── image 0.png │ │ │ ├── sGTemple.xml │ │ │ ├── sGTempleDown.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleDown.xml │ │ │ ├── sGTempleUp.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp.xml │ │ │ ├── sGTempleUp2.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp2.xml │ │ │ ├── sGTempleUp3.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp3.xml │ │ │ ├── sGTempleUp4.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp4.xml │ │ │ ├── sGTempleUp5.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp5.xml │ │ │ ├── sGTempleUp6.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp6.xml │ │ │ ├── sGTempleUp7.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp7.xml │ │ │ ├── sGTempleUp8.images │ │ │ │ └── image 0.png │ │ │ ├── sGTempleUp8.xml │ │ │ ├── sTemple.images │ │ │ │ └── image 0.png │ │ │ ├── sTemple.xml │ │ │ ├── sTempleBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleBottom.xml │ │ │ ├── sTempleDown.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleDown.xml │ │ │ ├── sTempleGold.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleGold.xml │ │ │ ├── sTempleGoldBig.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleGoldBig.xml │ │ │ ├── sTempleLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleLeft.xml │ │ │ ├── sTempleRight.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleRight.xml │ │ │ ├── sTempleTop.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleTop.xml │ │ │ ├── sTempleTop2.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleTop2.xml │ │ │ ├── sTempleUp.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp.xml │ │ │ ├── sTempleUp2.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp2.xml │ │ │ ├── sTempleUp3.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp3.xml │ │ │ ├── sTempleUp4.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp4.xml │ │ │ ├── sTempleUp5.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp5.xml │ │ │ ├── sTempleUp6.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp6.xml │ │ │ ├── sTempleUp7.images │ │ │ │ └── image 0.png │ │ │ ├── sTempleUp7.xml │ │ │ ├── sTempleUp8.images │ │ │ │ └── image 0.png │ │ │ └── sTempleUp8.xml │ │ ├── Water │ │ │ ├── _resources.list.xml │ │ │ ├── sLava.images │ │ │ │ └── image 0.png │ │ │ ├── sLava.xml │ │ │ ├── sLavaTop.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sLavaTop.xml │ │ │ ├── sWater.images │ │ │ │ └── image 0.png │ │ │ ├── sWater.xml │ │ │ ├── sWaterBottom.images │ │ │ │ └── image 0.png │ │ │ ├── sWaterBottom.xml │ │ │ ├── sWaterBottom2.images │ │ │ │ └── image 0.png │ │ │ ├── sWaterBottom2.xml │ │ │ ├── sWaterBottom3.images │ │ │ │ └── image 0.png │ │ │ ├── sWaterBottom3.xml │ │ │ ├── sWaterBottom4.images │ │ │ │ └── image 0.png │ │ │ ├── sWaterBottom4.xml │ │ │ ├── sWaterBottomTall1.images │ │ │ │ └── image 0.png │ │ │ ├── sWaterBottomTall1.xml │ │ │ ├── sWaterBottomTall2.images │ │ │ │ └── image 0.png │ │ │ ├── sWaterBottomTall2.xml │ │ │ ├── sWaterTop.images │ │ │ │ └── image 0.png │ │ │ └── sWaterTop.xml │ │ ├── _resources.list.xml │ │ ├── sMetalBlock.images │ │ │ └── image 0.png │ │ ├── sMetalBlock.xml │ │ ├── sMetalDoor.images │ │ │ └── image 0.png │ │ └── sMetalDoor.xml │ ├── Character │ │ ├── Damsel │ │ │ ├── _resources.list.xml │ │ │ ├── sDamselAttackL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselAttackL.xml │ │ │ ├── sDamselBounceL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselBounceL.xml │ │ │ ├── sDamselClimb.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sDamselClimb.xml │ │ │ ├── sDamselClimb2.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselClimb2.xml │ │ │ ├── sDamselClimb3.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselClimb3.xml │ │ │ ├── sDamselCrawlL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sDamselCrawlL.xml │ │ │ ├── sDamselDieL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselDieL.xml │ │ │ ├── sDamselDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselDieLL.xml │ │ │ ├── sDamselDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselDieLR.xml │ │ │ ├── sDamselDtHL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sDamselDtHL.xml │ │ │ ├── sDamselDuckL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselDuckL.xml │ │ │ ├── sDamselExit.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselExit.xml │ │ │ ├── sDamselExit2.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 16.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselExit2.xml │ │ │ ├── sDamselFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselFallL.xml │ │ │ ├── sDamselHangL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselHangL.xml │ │ │ ├── sDamselHoldL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselHoldL.xml │ │ │ ├── sDamselKissL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselKissL.xml │ │ │ ├── sDamselKissR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselKissR.xml │ │ │ ├── sDamselLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselLeft.xml │ │ │ ├── sDamselLeftIco.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselLeftIco.xml │ │ │ ├── sDamselLookL.images │ │ │ │ └── image 0.png │ │ │ ├── sDamselLookL.xml │ │ │ ├── sDamselPushL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sDamselPushL.xml │ │ │ ├── sDamselRunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sDamselRunL.xml │ │ │ ├── sDamselStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sDamselStunL.xml │ │ │ ├── sDamselWhoaL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sDamselWhoaL.xml │ │ │ ├── sDamselYellL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselYellL.xml │ │ │ ├── sDamselYellR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sDamselYellR.xml │ │ │ ├── sWalDamsel.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 16.png │ │ │ │ ├── image 17.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ └── sWalDamsel.xml │ │ ├── Main Dude │ │ │ ├── _resources.list.xml │ │ │ ├── sAttackLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sAttackLeft.xml │ │ │ ├── sClimbUp.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sClimbUp.xml │ │ │ ├── sClimbUp2.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sClimbUp2.xml │ │ │ ├── sClimbUp3.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sClimbUp3.xml │ │ │ ├── sCrawlLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sCrawlLeft.xml │ │ │ ├── sDieL.images │ │ │ │ └── image 0.png │ │ │ ├── sDieL.xml │ │ │ ├── sDieLBounce.images │ │ │ │ └── image 0.png │ │ │ ├── sDieLBounce.xml │ │ │ ├── sDieLFall.images │ │ │ │ └── image 0.png │ │ │ ├── sDieLFall.xml │ │ │ ├── sDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sDieLL.xml │ │ │ ├── sDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sDieLR.xml │ │ │ ├── sDuckLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sDuckLeft.xml │ │ │ ├── sDuckToHangL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sDuckToHangL.xml │ │ │ ├── sFallLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sFallLeft.xml │ │ │ ├── sHangLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sHangLeft.xml │ │ │ ├── sJumpLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sJumpLeft.xml │ │ │ ├── sLookLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sLookLeft.xml │ │ │ ├── sLookRunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sLookRunL.xml │ │ │ ├── sPExit.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sPExit.xml │ │ │ ├── sPKissL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sPKissL.xml │ │ │ ├── sPKissR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sPKissR.xml │ │ │ ├── sPushLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sPushLeft.xml │ │ │ ├── sRunLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sRunLeft.xml │ │ │ ├── sStandLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sStandLeft.xml │ │ │ ├── sStandLeftIco.images │ │ │ │ └── image 0.png │ │ │ ├── sStandLeftIco.xml │ │ │ ├── sStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sStunL.xml │ │ │ ├── sThrowLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sThrowLeft.xml │ │ │ ├── sWhoaLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sWhoaLeft.xml │ │ │ ├── sYellLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sYellLeft.xml │ │ │ ├── sYellRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ └── sYellRight.xml │ │ ├── Tunnel Man │ │ │ ├── _resources.list.xml │ │ │ ├── sTunnelAttackL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTunnelAttackL.xml │ │ │ ├── sTunnelClimb.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sTunnelClimb.xml │ │ │ ├── sTunnelClimb2.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTunnelClimb2.xml │ │ │ ├── sTunnelClimb3.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTunnelClimb3.xml │ │ │ ├── sTunnelCrawlL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTunnelCrawlL.xml │ │ │ ├── sTunnelDieL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelDieL.xml │ │ │ ├── sTunnelDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelDieLL.xml │ │ │ ├── sTunnelDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelDieLR.xml │ │ │ ├── sTunnelDtHL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTunnelDtHL.xml │ │ │ ├── sTunnelDuckL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelDuckL.xml │ │ │ ├── sTunnelExit.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTunnelExit.xml │ │ │ ├── sTunnelFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelFallL.xml │ │ │ ├── sTunnelHangL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelHangL.xml │ │ │ ├── sTunnelJumpL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelJumpL.xml │ │ │ ├── sTunnelLBounce.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelLBounce.xml │ │ │ ├── sTunnelLFall.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelLFall.xml │ │ │ ├── sTunnelLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelLeft.xml │ │ │ ├── sTunnelLookL.images │ │ │ │ └── image 0.png │ │ │ ├── sTunnelLookL.xml │ │ │ ├── sTunnelLookRunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sTunnelLookRunL.xml │ │ │ ├── sTunnelPushL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sTunnelPushL.xml │ │ │ ├── sTunnelRunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sTunnelRunL.xml │ │ │ ├── sTunnelStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sTunnelStunL.xml │ │ │ ├── sTunnelWhoaL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ └── sTunnelWhoaL.xml │ │ ├── _resources.list.xml │ │ ├── sTunnelManLeft.images │ │ │ └── image 0.png │ │ ├── sTunnelManLeft.xml │ │ ├── sTunnelManRight.images │ │ │ └── image 0.png │ │ ├── sTunnelManRight.xml │ │ ├── sYellHelp.images │ │ │ └── image 0.png │ │ └── sYellHelp.xml │ ├── Effects │ │ ├── _resources.list.xml │ │ ├── sBigCollect.images │ │ │ └── image 0.png │ │ ├── sBigCollect.xml │ │ ├── sBlood.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sBlood.xml │ │ ├── sBloodSpark.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ └── image 8.png │ │ ├── sBloodSpark.xml │ │ ├── sBloodTrail.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ └── image 6.png │ │ ├── sBloodTrail.xml │ │ ├── sBone.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ └── image 7.png │ │ ├── sBone.xml │ │ ├── sBubble.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ └── image 8.png │ │ ├── sBubble.xml │ │ ├── sBullet.images │ │ │ └── image 0.png │ │ ├── sBullet.xml │ │ ├── sBurn.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ └── image 8.png │ │ ├── sBurn.xml │ │ ├── sDrip.images │ │ │ └── image 0.png │ │ ├── sDrip.xml │ │ ├── sExplosion.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sExplosion.xml │ │ ├── sFlame.images │ │ │ └── image 0.png │ │ ├── sFlame.xml │ │ ├── sFlameTrail.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sFlameTrail.xml │ │ ├── sLaser.images │ │ │ └── image 0.png │ │ ├── sLaser.xml │ │ ├── sLaserExplode.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ └── image 7.png │ │ ├── sLaserExplode.xml │ │ ├── sLaserTrail.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sLaserTrail.xml │ │ ├── sLavaDrip.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sLavaDrip.xml │ │ ├── sLeaf.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sLeaf.xml │ │ ├── sLeafStill.images │ │ │ └── image 0.png │ │ ├── sLeafStill.xml │ │ ├── sPoof.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sPoof.xml │ │ ├── sPsychicCreate.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sPsychicCreate.xml │ │ ├── sPsychicWave.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 12.png │ │ │ ├── image 13.png │ │ │ ├── image 14.png │ │ │ ├── image 15.png │ │ │ ├── image 16.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sPsychicWave.xml │ │ ├── sPsychicWaveP.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 12.png │ │ │ ├── image 13.png │ │ │ ├── image 14.png │ │ │ ├── image 15.png │ │ │ ├── image 16.png │ │ │ ├── image 17.png │ │ │ ├── image 18.png │ │ │ ├── image 19.png │ │ │ ├── image 2.png │ │ │ ├── image 20.png │ │ │ ├── image 21.png │ │ │ ├── image 22.png │ │ │ ├── image 23.png │ │ │ ├── image 24.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sPsychicWaveP.xml │ │ ├── sRubble.images │ │ │ └── image 0.png │ │ ├── sRubble.xml │ │ ├── sRubbleDark.images │ │ │ └── image 0.png │ │ ├── sRubbleDark.xml │ │ ├── sRubbleDarkSmall.images │ │ │ └── image 0.png │ │ ├── sRubbleDarkSmall.xml │ │ ├── sRubbleLush.images │ │ │ └── image 0.png │ │ ├── sRubbleLush.xml │ │ ├── sRubbleLushSmall.images │ │ │ └── image 0.png │ │ ├── sRubbleLushSmall.xml │ │ ├── sRubbleSmall.images │ │ │ └── image 0.png │ │ ├── sRubbleSmall.xml │ │ ├── sRubbleTan.images │ │ │ └── image 0.png │ │ ├── sRubbleTan.xml │ │ ├── sRubbleTanSmall.images │ │ │ └── image 0.png │ │ ├── sRubbleTanSmall.xml │ │ ├── sShotgunBlastLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sShotgunBlastLeft.xml │ │ ├── sShotgunBlastRight.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sShotgunBlastRight.xml │ │ ├── sSmallCollect.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 12.png │ │ │ ├── image 13.png │ │ │ ├── image 14.png │ │ │ ├── image 15.png │ │ │ ├── image 16.png │ │ │ ├── image 17.png │ │ │ ├── image 18.png │ │ │ ├── image 19.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sSmallCollect.xml │ │ ├── sSmokePuff.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ └── image 7.png │ │ ├── sSmokePuff.xml │ │ ├── sSmoochHeart.images │ │ │ ├── image 0.png │ │ │ └── image 1.png │ │ ├── sSmoochHeart.xml │ │ ├── sSplash.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sSplash.xml │ │ ├── sYellowBall.images │ │ │ ├── image 0.png │ │ │ └── image 1.png │ │ ├── sYellowBall.xml │ │ ├── sYellowTrail.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ └── sYellowTrail.xml │ ├── Enemies │ │ ├── Caveman │ │ │ ├── _resources.list.xml │ │ │ ├── sCaravan1.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sCaravan1.xml │ │ │ ├── sCaravan2.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sCaravan2.xml │ │ │ ├── sCaravan3.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sCaravan3.xml │ │ │ ├── sCaveManWorshipL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sCaveManWorshipL.xml │ │ │ ├── sCavemanBounceL.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanBounceL.xml │ │ │ ├── sCavemanDHeldL.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanDHeldL.xml │ │ │ ├── sCavemanDeadL.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanDeadL.xml │ │ │ ├── sCavemanDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanDieLL.xml │ │ │ ├── sCavemanDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanDieLR.xml │ │ │ ├── sCavemanFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanFallL.xml │ │ │ ├── sCavemanHeldL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sCavemanHeldL.xml │ │ │ ├── sCavemanLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sCavemanLeft.xml │ │ │ ├── sCavemanRunLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sCavemanRunLeft.xml │ │ │ ├── sCavemanStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sCavemanStunL.xml │ │ │ ├── sCavemanWorshipR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sCavemanWorshipR.xml │ │ │ ├── sFrozenCaveman.images │ │ │ │ └── image 0.png │ │ │ └── sFrozenCaveman.xml │ │ ├── Ghost │ │ │ ├── _resources.list.xml │ │ │ ├── sGhostDisappear.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sGhostDisappear.xml │ │ │ ├── sGhostLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sGhostLeft.xml │ │ │ ├── sGhostRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sGhostRight.xml │ │ │ ├── sGhostTurnLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sGhostTurnLeft.xml │ │ │ ├── sGhostTurnRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ └── sGhostTurnRight.xml │ │ ├── GiantSpider │ │ │ ├── _resources.list.xml │ │ │ ├── sGiantSpider.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sGiantSpider.xml │ │ │ ├── sGiantSpiderCrawl.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sGiantSpiderCrawl.xml │ │ │ ├── sGiantSpiderDisp.images │ │ │ │ └── image 0.png │ │ │ ├── sGiantSpiderDisp.xml │ │ │ ├── sGiantSpiderFlip.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sGiantSpiderFlip.xml │ │ │ ├── sGiantSpiderHang.images │ │ │ │ └── image 0.png │ │ │ ├── sGiantSpiderHang.xml │ │ │ ├── sGiantSpiderJump.images │ │ │ │ └── image 0.png │ │ │ ├── sGiantSpiderJump.xml │ │ │ ├── sGiantSpiderSquirt.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ └── image 7.png │ │ │ ├── sGiantSpiderSquirt.xml │ │ │ ├── sWeb.images │ │ │ │ └── image 0.png │ │ │ ├── sWeb.xml │ │ │ ├── sWebBall.images │ │ │ │ └── image 0.png │ │ │ ├── sWebBall.xml │ │ │ ├── sWebCreate.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ └── sWebCreate.xml │ │ ├── Hawkman │ │ │ ├── _resources.list.xml │ │ │ ├── sHawkBounceL.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkBounceL.xml │ │ │ ├── sHawkDHeldL.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkDHeldL.xml │ │ │ ├── sHawkDeadL.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkDeadL.xml │ │ │ ├── sHawkDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkDieLL.xml │ │ │ ├── sHawkDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkDieLR.xml │ │ │ ├── sHawkFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkFallL.xml │ │ │ ├── sHawkHeldL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sHawkHeldL.xml │ │ │ ├── sHawkLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sHawkLeft.xml │ │ │ ├── sHawkRunLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sHawkRunLeft.xml │ │ │ ├── sHawkStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sHawkStunL.xml │ │ │ ├── sHawkThrowL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ └── sHawkThrowL.xml │ │ ├── Jaws │ │ │ ├── _resources.list.xml │ │ │ ├── sJawsBody1L.images │ │ │ │ └── image 0.png │ │ │ ├── sJawsBody1L.xml │ │ │ ├── sJawsBody1R.images │ │ │ │ └── image 0.png │ │ │ ├── sJawsBody1R.xml │ │ │ ├── sJawsBody2L.images │ │ │ │ └── image 0.png │ │ │ ├── sJawsBody2L.xml │ │ │ ├── sJawsBody2R.images │ │ │ │ └── image 0.png │ │ │ ├── sJawsBody2R.xml │ │ │ ├── sJawsBody3L.images │ │ │ │ └── image 0.png │ │ │ ├── sJawsBody3L.xml │ │ │ ├── sJawsBody3R.images │ │ │ │ └── image 0.png │ │ │ ├── sJawsBody3R.xml │ │ │ ├── sJawsLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sJawsLeft.xml │ │ │ ├── sJawsRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ └── image 8.png │ │ │ ├── sJawsRight.xml │ │ │ ├── sJawsTurnL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sJawsTurnL.xml │ │ │ ├── sJawsTurnR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sJawsTurnR.xml │ │ │ ├── sMegaMouth.images │ │ │ │ └── image 0.png │ │ │ └── sMegaMouth.xml │ │ ├── MagmaMan │ │ │ ├── _resources.list.xml │ │ │ ├── sMagma.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sMagma.xml │ │ │ ├── sMagmaManCreate.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sMagmaManCreate.xml │ │ │ ├── sMagmaManDie.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sMagmaManDie.xml │ │ │ ├── sMagmaManLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sMagmaManLeft.xml │ │ │ ├── sMagmaManWalkL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sMagmaManWalkL.xml │ │ │ ├── sMagmaTrail.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ └── sMagmaTrail.xml │ │ ├── ManTrap │ │ │ ├── _resources.list.xml │ │ │ ├── sManTrapEatCavemanL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatCavemanL.xml │ │ │ ├── sManTrapEatDamselL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatDamselL.xml │ │ │ ├── sManTrapEatHawkman.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatHawkman.xml │ │ │ ├── sManTrapEatL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatL.xml │ │ │ ├── sManTrapEatShopkeeperL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatShopkeeperL.xml │ │ │ ├── sManTrapEatTunnelL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatTunnelL.xml │ │ │ ├── sManTrapEatVampire.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatVampire.xml │ │ │ ├── sManTrapEatYeti.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapEatYeti.xml │ │ │ ├── sManTrapLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sManTrapLeft.xml │ │ │ ├── sManTrapSleepL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sManTrapSleepL.xml │ │ │ ├── sManTrapStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sManTrapStunL.xml │ │ │ ├── sManTrapTemp.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ └── sManTrapTemp.xml │ │ ├── Monkey │ │ │ ├── _resources.list.xml │ │ │ ├── sMonkeyClimbL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sMonkeyClimbL.xml │ │ │ ├── sMonkeyHangL.images │ │ │ │ └── image 0.png │ │ │ ├── sMonkeyHangL.xml │ │ │ ├── sMonkeyJumpL.images │ │ │ │ └── image 0.png │ │ │ ├── sMonkeyJumpL.xml │ │ │ ├── sMonkeyLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sMonkeyLeft.xml │ │ │ ├── sMonkeyWalkL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ └── sMonkeyWalkL.xml │ │ ├── Olmec │ │ │ ├── _resources.list.xml │ │ │ ├── sOlmec.images │ │ │ │ └── image 0.png │ │ │ ├── sOlmec.xml │ │ │ ├── sOlmecDebris.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sOlmecDebris.xml │ │ │ ├── sOlmecDebris2.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sOlmecDebris2.xml │ │ │ ├── sOlmecDebris3.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sOlmecDebris3.xml │ │ │ ├── sOlmecStart1.images │ │ │ │ └── image 0.png │ │ │ ├── sOlmecStart1.xml │ │ │ ├── sOlmecStart2.images │ │ │ │ └── image 0.png │ │ │ ├── sOlmecStart2.xml │ │ │ ├── sOlmecStart3.images │ │ │ │ └── image 0.png │ │ │ └── sOlmecStart3.xml │ │ ├── Shopkeeper │ │ │ ├── _resources.list.xml │ │ │ ├── sShopBounceL.images │ │ │ │ └── image 0.png │ │ │ ├── sShopBounceL.xml │ │ │ ├── sShopDHeldL.images │ │ │ │ └── image 0.png │ │ │ ├── sShopDHeldL.xml │ │ │ ├── sShopDieL.images │ │ │ │ └── image 0.png │ │ │ ├── sShopDieL.xml │ │ │ ├── sShopDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sShopDieLL.xml │ │ │ ├── sShopDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sShopDieLR.xml │ │ │ ├── sShopFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sShopFallL.xml │ │ │ ├── sShopHeldL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sShopHeldL.xml │ │ │ ├── sShopLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sShopLeft.xml │ │ │ ├── sShopLeftIco.images │ │ │ │ └── image 0.png │ │ │ ├── sShopLeftIco.xml │ │ │ ├── sShopRunLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sShopRunLeft.xml │ │ │ ├── sShopStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sShopStunL.xml │ │ │ ├── sShopThrowL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ └── sShopThrowL.xml │ │ ├── Skeleton │ │ │ ├── _resources.list.xml │ │ │ ├── sSkeletonCreateL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sSkeletonCreateL.xml │ │ │ ├── sSkeletonCreateR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sSkeletonCreateR.xml │ │ │ ├── sSkeletonLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sSkeletonLeft.xml │ │ │ ├── sSkeletonWalkLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ └── sSkeletonWalkLeft.xml │ │ ├── TombLord │ │ │ ├── _resources.list.xml │ │ │ ├── sFlyLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sFlyLeft.xml │ │ │ ├── sFlyRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sFlyRight.xml │ │ │ ├── sTombLordAttackL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTombLordAttackL.xml │ │ │ ├── sTombLordAttackR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTombLordAttackR.xml │ │ │ ├── sTombLordDisp.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sTombLordDisp.xml │ │ │ ├── sTombLordLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sTombLordLeft.xml │ │ │ ├── sTombLordRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sTombLordRight.xml │ │ │ ├── sTombLordTurnL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sTombLordTurnL.xml │ │ │ ├── sTombLordTurnR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ ├── sTombLordTurnR.xml │ │ │ ├── sTombLordWalkL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sTombLordWalkL.xml │ │ │ ├── sTombLordWalkR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ └── sTombLordWalkR.xml │ │ ├── Vampire │ │ │ ├── _resources.list.xml │ │ │ ├── sVampireBatHang.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireBatHang.xml │ │ │ ├── sVampireBatLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sVampireBatLeft.xml │ │ │ ├── sVampireBatRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sVampireBatRight.xml │ │ │ ├── sVampireBounceL.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireBounceL.xml │ │ │ ├── sVampireDHeldL.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireDHeldL.xml │ │ │ ├── sVampireDeadL.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireDeadL.xml │ │ │ ├── sVampireDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireDieLL.xml │ │ │ ├── sVampireDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireDieLR.xml │ │ │ ├── sVampireFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireFallL.xml │ │ │ ├── sVampireHeldL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sVampireHeldL.xml │ │ │ ├── sVampireJumpL.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireJumpL.xml │ │ │ ├── sVampireLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sVampireLeft.xml │ │ │ ├── sVampireRunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sVampireRunL.xml │ │ │ ├── sVampireStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ └── sVampireStunL.xml │ │ ├── Yeti │ │ │ ├── _resources.list.xml │ │ │ ├── sYetiBounceL.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiBounceL.xml │ │ │ ├── sYetiDHeldL.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiDHeldL.xml │ │ │ ├── sYetiDeadL.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiDeadL.xml │ │ │ ├── sYetiDieLL.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiDieLL.xml │ │ │ ├── sYetiDieLR.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiDieLR.xml │ │ │ ├── sYetiFallL.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiFallL.xml │ │ │ ├── sYetiHeldL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sYetiHeldL.xml │ │ │ ├── sYetiLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiLeft.xml │ │ │ ├── sYetiRunLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sYetiRunLeft.xml │ │ │ ├── sYetiStunL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sYetiStunL.xml │ │ │ ├── sYetiThrowL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ └── image 6.png │ │ │ └── sYetiThrowL.xml │ │ ├── YetiKing │ │ │ ├── _resources.list.xml │ │ │ ├── sYetiKingDisp.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiKingDisp.xml │ │ │ ├── sYetiKingLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiKingLeft.xml │ │ │ ├── sYetiKingRight.images │ │ │ │ └── image 0.png │ │ │ ├── sYetiKingRight.xml │ │ │ ├── sYetiKingTurnL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sYetiKingTurnL.xml │ │ │ ├── sYetiKingTurnR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sYetiKingTurnR.xml │ │ │ ├── sYetiKingWalkL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ └── image 7.png │ │ │ ├── sYetiKingWalkL.xml │ │ │ ├── sYetiKingWalkR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ └── image 7.png │ │ │ ├── sYetiKingWalkR.xml │ │ │ ├── sYetiKingYellL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sYetiKingYellL.xml │ │ │ ├── sYetiKingYellR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ └── sYetiKingYellR.xml │ │ ├── _resources.list.xml │ │ ├── sAlien.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sAlien.xml │ │ ├── sAlienBoss.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sAlienBoss.xml │ │ ├── sAlienBossDead.images │ │ │ └── image 0.png │ │ ├── sAlienBossDead.xml │ │ ├── sAlienBossDie.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ └── image 8.png │ │ ├── sAlienBossDie.xml │ │ ├── sAlienBossDisp.images │ │ │ └── image 0.png │ │ ├── sAlienBossDisp.xml │ │ ├── sAlienBossHurt.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sAlienBossHurt.xml │ │ ├── sAlienBossTile.images │ │ │ └── image 0.png │ │ ├── sAlienBossTile.xml │ │ ├── sAlienDeploy.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sAlienDeploy.xml │ │ ├── sAlienEject.images │ │ │ └── image 0.png │ │ ├── sAlienEject.xml │ │ ├── sAlienParachute.images │ │ │ └── image 0.png │ │ ├── sAlienParachute.xml │ │ ├── sBatHang.images │ │ │ └── image 0.png │ │ ├── sBatHang.xml │ │ ├── sBatLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sBatLeft.xml │ │ ├── sBatRight.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sBatRight.xml │ │ ├── sDeadFishLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sDeadFishLeft.xml │ │ ├── sDeadFishLeftIco.images │ │ │ └── image 0.png │ │ ├── sDeadFishLeftIco.xml │ │ ├── sDeadFishRight.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sDeadFishRight.xml │ │ ├── sFireFrogArmedL.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sFireFrogArmedL.xml │ │ ├── sFireFrogJumpL.images │ │ │ └── image 0.png │ │ ├── sFireFrogJumpL.xml │ │ ├── sFireFrogLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sFireFrogLeft.xml │ │ ├── sFrogJumpL.images │ │ │ └── image 0.png │ │ ├── sFrogJumpL.xml │ │ ├── sFrogLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sFrogLeft.xml │ │ ├── sOlmecSlam.images │ │ │ └── image 0.png │ │ ├── sOlmecSlam.xml │ │ ├── sPiranhaLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sPiranhaLeft.xml │ │ ├── sPiranhaLeftIco.images │ │ │ └── image 0.png │ │ ├── sPiranhaLeftIco.xml │ │ ├── sPiranhaRight.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sPiranhaRight.xml │ │ ├── sSight.images │ │ │ └── image 0.png │ │ ├── sSight.xml │ │ ├── sSnakeLeft.images │ │ │ └── image 0.png │ │ ├── sSnakeLeft.xml │ │ ├── sSnakeWalkL.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sSnakeWalkL.xml │ │ ├── sSpider.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sSpider.xml │ │ ├── sSpiderDrown.images │ │ │ └── image 0.png │ │ ├── sSpiderDrown.xml │ │ ├── sSpiderDrowning.images │ │ │ ├── image 0.png │ │ │ └── image 1.png │ │ ├── sSpiderDrowning.xml │ │ ├── sSpiderFlip.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ └── image 8.png │ │ ├── sSpiderFlip.xml │ │ ├── sSpiderHang.images │ │ │ └── image 0.png │ │ ├── sSpiderHang.xml │ │ ├── sUFO.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ └── image 7.png │ │ ├── sUFO.xml │ │ ├── sUFOBlast.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 12.png │ │ │ ├── image 13.png │ │ │ ├── image 14.png │ │ │ ├── image 15.png │ │ │ ├── image 16.png │ │ │ ├── image 17.png │ │ │ ├── image 18.png │ │ │ ├── image 19.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sUFOBlast.xml │ │ ├── sUFOCrash.images │ │ │ └── image 0.png │ │ ├── sUFOCrash.xml │ │ ├── sZombieJumpL.images │ │ │ └── image 0.png │ │ ├── sZombieJumpL.xml │ │ ├── sZombieLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sZombieLeft.xml │ │ ├── sprite624.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ └── image 2.png │ │ ├── sprite624.xml │ │ ├── sprite625.images │ │ │ └── image 0.png │ │ └── sprite625.xml │ ├── HUD │ │ ├── _resources.list.xml │ │ ├── sArrowIcon.images │ │ │ └── image 0.png │ │ ├── sArrowIcon.xml │ │ ├── sBombIcon.images │ │ │ └── image 0.png │ │ ├── sBombIcon.xml │ │ ├── sCapeIcon.images │ │ │ └── image 0.png │ │ ├── sCapeIcon.xml │ │ ├── sCompassIcon.images │ │ │ └── image 0.png │ │ ├── sCompassIcon.xml │ │ ├── sDamselIcon.images │ │ │ └── image 0.png │ │ ├── sDamselIcon.xml │ │ ├── sDeathMask.images │ │ │ └── image 0.png │ │ ├── sDeathMask.xml │ │ ├── sDollarSign.images │ │ │ └── image 0.png │ │ ├── sDollarSign.xml │ │ ├── sGlovesIcon.images │ │ │ └── image 0.png │ │ ├── sGlovesIcon.xml │ │ ├── sHeart.images │ │ │ └── image 0.png │ │ ├── sHeart.xml │ │ ├── sHintPoint.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sHintPoint.xml │ │ ├── sHoldItemIcon.images │ │ │ └── image 0.png │ │ ├── sHoldItemIcon.xml │ │ ├── sHoopsIcon.images │ │ │ └── image 0.png │ │ ├── sHoopsIcon.xml │ │ ├── sJetpackIcon.images │ │ │ └── image 0.png │ │ ├── sJetpackIcon.xml │ │ ├── sKapalaIcon.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sKapalaIcon.xml │ │ ├── sMittIcon.images │ │ │ └── image 0.png │ │ ├── sMittIcon.xml │ │ ├── sParachuteIcon.images │ │ │ └── image 0.png │ │ ├── sParachuteIcon.xml │ │ ├── sRopeIcon.images │ │ │ └── image 0.png │ │ ├── sRopeIcon.xml │ │ ├── sShopkeeperIcon.images │ │ │ └── image 0.png │ │ ├── sShopkeeperIcon.xml │ │ ├── sSpectaclesIcon.images │ │ │ └── image 0.png │ │ ├── sSpectaclesIcon.xml │ │ ├── sSpikeShoesIcon.images │ │ │ └── image 0.png │ │ ├── sSpikeShoesIcon.xml │ │ ├── sSpringShoesIcon.images │ │ │ └── image 0.png │ │ ├── sSpringShoesIcon.xml │ │ ├── sStickyBombIcon.images │ │ │ └── image 0.png │ │ ├── sStickyBombIcon.xml │ │ ├── sTimerIcon.images │ │ │ └── image 0.png │ │ └── sTimerIcon.xml │ ├── Items │ │ ├── Other │ │ │ ├── _resources.list.xml │ │ │ ├── sBombsGet.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sBombsGet.xml │ │ │ ├── sBonesLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sBonesLeft.xml │ │ │ ├── sChest.images │ │ │ │ └── image 0.png │ │ │ ├── sChest.xml │ │ │ ├── sChestOpen.images │ │ │ │ └── image 0.png │ │ │ ├── sChestOpen.xml │ │ │ ├── sCrate.images │ │ │ │ └── image 0.png │ │ │ ├── sCrate.xml │ │ │ ├── sCrateOpen.images │ │ │ │ └── image 0.png │ │ │ ├── sCrateOpen.xml │ │ │ ├── sDice1.images │ │ │ │ └── image 0.png │ │ │ ├── sDice1.xml │ │ │ ├── sDice2.images │ │ │ │ └── image 0.png │ │ │ ├── sDice2.xml │ │ │ ├── sDice3.images │ │ │ │ └── image 0.png │ │ │ ├── sDice3.xml │ │ │ ├── sDice4.images │ │ │ │ └── image 0.png │ │ │ ├── sDice4.xml │ │ │ ├── sDice5.images │ │ │ │ └── image 0.png │ │ │ ├── sDice5.xml │ │ │ ├── sDice6.images │ │ │ │ └── image 0.png │ │ │ ├── sDice6.xml │ │ │ ├── sDiceRoll.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sDiceRoll.xml │ │ │ ├── sFakeBonesLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sFakeBonesLeft.xml │ │ │ ├── sFlareCrate.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sFlareCrate.xml │ │ │ ├── sItemGet.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sItemGet.xml │ │ │ ├── sLockedChest.images │ │ │ │ └── image 0.png │ │ │ ├── sLockedChest.xml │ │ │ ├── sLockedChestOpen.images │ │ │ │ └── image 0.png │ │ │ ├── sLockedChestOpen.xml │ │ │ ├── sParaUsed.images │ │ │ │ └── image 0.png │ │ │ ├── sParaUsed.xml │ │ │ ├── sRedArrowDown.images │ │ │ │ └── image 0.png │ │ │ ├── sRedArrowDown.xml │ │ │ ├── sRopeGet.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ └── sRopeGet.xml │ │ ├── Saleable │ │ │ ├── _resources.list.xml │ │ │ ├── sAnkh.images │ │ │ │ └── image 0.png │ │ │ ├── sAnkh.xml │ │ │ ├── sAnkhIcon.images │ │ │ │ └── image 0.png │ │ │ ├── sAnkhIcon.xml │ │ │ ├── sBombBag.images │ │ │ │ └── image 0.png │ │ │ ├── sBombBag.xml │ │ │ ├── sBombBox.images │ │ │ │ └── image 0.png │ │ │ ├── sBombBox.xml │ │ │ ├── sBowDisp.images │ │ │ │ └── image 0.png │ │ │ ├── sBowDisp.xml │ │ │ ├── sBowLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sBowLeft.xml │ │ │ ├── sBowRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ └── image 3.png │ │ │ ├── sBowRight.xml │ │ │ ├── sCape.images │ │ │ │ └── image 0.png │ │ │ ├── sCape.xml │ │ │ ├── sCapeBack.images │ │ │ │ └── image 0.png │ │ │ ├── sCapeBack.xml │ │ │ ├── sCapeDL.images │ │ │ │ └── image 0.png │ │ │ ├── sCapeDL.xml │ │ │ ├── sCapeDR.images │ │ │ │ └── image 0.png │ │ │ ├── sCapeDR.xml │ │ │ ├── sCapeLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sCapeLeft.xml │ │ │ ├── sCapeRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sCapeRight.xml │ │ │ ├── sCapeUL.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sCapeUL.xml │ │ │ ├── sCapeUR.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sCapeUR.xml │ │ │ ├── sCompass.images │ │ │ │ └── image 0.png │ │ │ ├── sCompass.xml │ │ │ ├── sCompassDown.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassDown.xml │ │ │ ├── sCompassLL.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassLL.xml │ │ │ ├── sCompassLR.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassLR.xml │ │ │ ├── sCompassLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassLeft.xml │ │ │ ├── sCompassRight.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassRight.xml │ │ │ ├── sCompassSmallDown.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassSmallDown.xml │ │ │ ├── sCompassSmallLL.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassSmallLL.xml │ │ │ ├── sCompassSmallLR.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassSmallLR.xml │ │ │ ├── sCompassSmallLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassSmallLeft.xml │ │ │ ├── sCompassSmallRight.images │ │ │ │ └── image 0.png │ │ │ ├── sCompassSmallRight.xml │ │ │ ├── sCrown.images │ │ │ │ └── image 0.png │ │ │ ├── sCrown.xml │ │ │ ├── sCrownIcon.images │ │ │ │ └── image 0.png │ │ │ ├── sCrownIcon.xml │ │ │ ├── sDeathMaskPickup.images │ │ │ │ └── image 0.png │ │ │ ├── sDeathMaskPickup.xml │ │ │ ├── sDeathMaskWear.images │ │ │ │ └── image 0.png │ │ │ ├── sDeathMaskWear.xml │ │ │ ├── sGlove.images │ │ │ │ └── image 0.png │ │ │ ├── sGlove.xml │ │ │ ├── sJetpackBack.images │ │ │ │ └── image 0.png │ │ │ ├── sJetpackBack.xml │ │ │ ├── sJetpackLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sJetpackLeft.xml │ │ │ ├── sJetpackRight.images │ │ │ │ └── image 0.png │ │ │ ├── sJetpackRight.xml │ │ │ ├── sJordans.images │ │ │ │ └── image 0.png │ │ │ ├── sJordans.xml │ │ │ ├── sKapala.images │ │ │ │ └── image 0.png │ │ │ ├── sKapala.xml │ │ │ ├── sKeyLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sKeyLeft.xml │ │ │ ├── sKeyRight.images │ │ │ │ └── image 0.png │ │ │ ├── sKeyRight.xml │ │ │ ├── sMacheteLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sMacheteLeft.xml │ │ │ ├── sMacheteRight.images │ │ │ │ └── image 0.png │ │ │ ├── sMacheteRight.xml │ │ │ ├── sMattockLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sMattockLeft.xml │ │ │ ├── sMattockRight.images │ │ │ │ └── image 0.png │ │ │ ├── sMattockRight.xml │ │ │ ├── sMitt.images │ │ │ │ └── image 0.png │ │ │ ├── sMitt.xml │ │ │ ├── sNinjaSuit.images │ │ │ │ └── image 0.png │ │ │ ├── sNinjaSuit.xml │ │ │ ├── sParaOpen.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sParaOpen.xml │ │ │ ├── sParaPickup.images │ │ │ │ └── image 0.png │ │ │ ├── sParaPickup.xml │ │ │ ├── sParachute.images │ │ │ │ └── image 0.png │ │ │ ├── sParachute.xml │ │ │ ├── sPaste.images │ │ │ │ └── image 0.png │ │ │ ├── sPaste.xml │ │ │ ├── sPistolLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sPistolLeft.xml │ │ │ ├── sPistolRight.images │ │ │ │ └── image 0.png │ │ │ ├── sPistolRight.xml │ │ │ ├── sRopePile.images │ │ │ │ └── image 0.png │ │ │ ├── sRopePile.xml │ │ │ ├── sSceptreLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sSceptreLeft.xml │ │ │ ├── sSceptreRight.images │ │ │ │ └── image 0.png │ │ │ ├── sSceptreRight.xml │ │ │ ├── sSpectacles.images │ │ │ │ └── image 0.png │ │ │ ├── sSpectacles.xml │ │ │ ├── sSpikeShoes.images │ │ │ │ └── image 0.png │ │ │ ├── sSpikeShoes.xml │ │ │ ├── sSpringShoes.images │ │ │ │ └── image 0.png │ │ │ ├── sSpringShoes.xml │ │ │ ├── sTeleporter.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 10.png │ │ │ │ ├── image 11.png │ │ │ │ ├── image 12.png │ │ │ │ ├── image 13.png │ │ │ │ ├── image 14.png │ │ │ │ ├── image 15.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ ├── image 7.png │ │ │ │ ├── image 8.png │ │ │ │ └── image 9.png │ │ │ ├── sTeleporter.xml │ │ │ ├── sUdjatEye.images │ │ │ │ └── image 0.png │ │ │ ├── sUdjatEye.xml │ │ │ ├── sUdjatEyeIcon.images │ │ │ │ └── image 0.png │ │ │ ├── sUdjatEyeIcon.xml │ │ │ ├── sUdjatEyeIcon2.images │ │ │ │ └── image 0.png │ │ │ ├── sUdjatEyeIcon2.xml │ │ │ ├── sWebCannonL.images │ │ │ │ └── image 0.png │ │ │ ├── sWebCannonL.xml │ │ │ ├── sWebCannonR.images │ │ │ │ └── image 0.png │ │ │ └── sWebCannonR.xml │ │ ├── Treasures │ │ │ ├── _resources.list.xml │ │ │ ├── sBell.images │ │ │ │ └── image 0.png │ │ │ ├── sBell.xml │ │ │ ├── sCrystalSkull.images │ │ │ │ └── image 0.png │ │ │ ├── sCrystalSkull.xml │ │ │ ├── sCrystalSkullIco.images │ │ │ │ └── image 0.png │ │ │ ├── sCrystalSkullIco.xml │ │ │ ├── sDiamond.images │ │ │ │ └── image 0.png │ │ │ ├── sDiamond.xml │ │ │ ├── sEmerald.images │ │ │ │ └── image 0.png │ │ │ ├── sEmerald.xml │ │ │ ├── sEmeraldBig.images │ │ │ │ └── image 0.png │ │ │ ├── sEmeraldBig.xml │ │ │ ├── sGoldBar.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldBar.xml │ │ │ ├── sGoldBarDraw.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldBarDraw.xml │ │ │ ├── sGoldBars.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldBars.xml │ │ │ ├── sGoldBarsDraw.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldBarsDraw.xml │ │ │ ├── sGoldChunk.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldChunk.xml │ │ │ ├── sGoldEgg.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldEgg.xml │ │ │ ├── sGoldIdol.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldIdol.xml │ │ │ ├── sGoldIdolIco.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldIdolIco.xml │ │ │ ├── sGoldNugget.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldNugget.xml │ │ │ ├── sLampItem.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sLampItem.xml │ │ │ ├── sLampRedItem.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sLampRedItem.xml │ │ │ ├── sRuby.images │ │ │ │ └── image 0.png │ │ │ ├── sRuby.xml │ │ │ ├── sRubyBig.images │ │ │ │ └── image 0.png │ │ │ ├── sRubyBig.xml │ │ │ ├── sSapphire.images │ │ │ │ └── image 0.png │ │ │ ├── sSapphire.xml │ │ │ ├── sSapphireBig.images │ │ │ │ └── image 0.png │ │ │ ├── sSapphireBig.xml │ │ │ ├── sScarab.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sScarab.xml │ │ │ ├── sScarabDisp.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ └── sScarabDisp.xml │ │ ├── Weapons │ │ │ ├── _resources.list.xml │ │ │ ├── sArrowLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sArrowLeft.xml │ │ │ ├── sArrowRight.images │ │ │ │ └── image 0.png │ │ │ ├── sArrowRight.xml │ │ │ ├── sBall.images │ │ │ │ └── image 0.png │ │ │ ├── sBall.xml │ │ │ ├── sBasketball.images │ │ │ │ └── image 0.png │ │ │ ├── sBasketball.xml │ │ │ ├── sBomb.images │ │ │ │ └── image 0.png │ │ │ ├── sBomb.xml │ │ │ ├── sBombArmed.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sBombArmed.xml │ │ │ ├── sBombArrowLeft.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sBombArrowLeft.xml │ │ │ ├── sBombArrowRight.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sBombArrowRight.xml │ │ │ ├── sChain.images │ │ │ │ └── image 0.png │ │ │ ├── sChain.xml │ │ │ ├── sDribble.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sDribble.xml │ │ │ ├── sEgg.images │ │ │ │ └── image 0.png │ │ │ ├── sEgg.xml │ │ │ ├── sFishBone.images │ │ │ │ └── image 0.png │ │ │ ├── sFishBone.xml │ │ │ ├── sJar.images │ │ │ │ └── image 0.png │ │ │ ├── sJar.xml │ │ │ ├── sMachetePreL.images │ │ │ │ └── image 0.png │ │ │ ├── sMachetePreL.xml │ │ │ ├── sMachetePreR.images │ │ │ │ └── image 0.png │ │ │ ├── sMachetePreR.xml │ │ │ ├── sMattockHead.images │ │ │ │ └── image 0.png │ │ │ ├── sMattockHead.xml │ │ │ ├── sMattockHitL.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sMattockHitL.xml │ │ │ ├── sMattockHitR.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sMattockHitR.xml │ │ │ ├── sMattockPreL.images │ │ │ │ └── image 0.png │ │ │ ├── sMattockPreL.xml │ │ │ ├── sMattockPreR.images │ │ │ │ └── image 0.png │ │ │ ├── sMattockPreR.xml │ │ │ ├── sRock.images │ │ │ │ └── image 0.png │ │ │ ├── sRock.xml │ │ │ ├── sRope.images │ │ │ │ └── image 0.png │ │ │ ├── sRope.xml │ │ │ ├── sRopeEnd.images │ │ │ │ └── image 0.png │ │ │ ├── sRopeEnd.xml │ │ │ ├── sRopeTop.images │ │ │ │ └── image 0.png │ │ │ ├── sRopeTop.xml │ │ │ ├── sShotgunLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sShotgunLeft.xml │ │ │ ├── sShotgunRight.images │ │ │ │ └── image 0.png │ │ │ ├── sShotgunRight.xml │ │ │ ├── sSkull.images │ │ │ │ └── image 0.png │ │ │ ├── sSkull.xml │ │ │ ├── sSlashLeft.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sSlashLeft.xml │ │ │ ├── sSlashRight.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sSlashRight.xml │ │ │ ├── sTarget.images │ │ │ │ └── image 0.png │ │ │ ├── sTarget.xml │ │ │ ├── sWhipLeft.images │ │ │ │ └── image 0.png │ │ │ ├── sWhipLeft.xml │ │ │ ├── sWhipPreL.images │ │ │ │ └── image 0.png │ │ │ ├── sWhipPreL.xml │ │ │ ├── sWhipPreR.images │ │ │ │ └── image 0.png │ │ │ ├── sWhipPreR.xml │ │ │ ├── sWhipRight.images │ │ │ │ └── image 0.png │ │ │ └── sWhipRight.xml │ │ └── _resources.list.xml │ ├── Level Editor │ │ ├── _resources.list.xml │ │ ├── sBombBagTile.images │ │ │ └── image 0.png │ │ ├── sBombBagTile.xml │ │ ├── sBombBoxTile.images │ │ │ └── image 0.png │ │ ├── sBombBoxTile.xml │ │ ├── sBombPasteTile.images │ │ │ └── image 0.png │ │ ├── sBombPasteTile.xml │ │ ├── sBowTile.images │ │ │ └── image 0.png │ │ ├── sBowTile.xml │ │ ├── sCapeTile.images │ │ │ └── image 0.png │ │ ├── sCapeTile.xml │ │ ├── sChestTile.images │ │ │ └── image 0.png │ │ ├── sChestTile.xml │ │ ├── sCompassTile.images │ │ │ └── image 0.png │ │ ├── sCompassTile.xml │ │ ├── sCrateTile.images │ │ │ └── image 0.png │ │ ├── sCrateTile.xml │ │ ├── sCrystalSkullTile.images │ │ │ └── image 0.png │ │ ├── sCrystalSkullTile.xml │ │ ├── sDiamondTile.images │ │ │ └── image 0.png │ │ ├── sDiamondTile.xml │ │ ├── sEmeraldBigTile.images │ │ │ └── image 0.png │ │ ├── sEmeraldBigTile.xml │ │ ├── sGlovesTile.images │ │ │ └── image 0.png │ │ ├── sGlovesTile.xml │ │ ├── sGoldBarTile.images │ │ │ └── image 0.png │ │ ├── sGoldBarTile.xml │ │ ├── sGoldBarsTile.images │ │ │ └── image 0.png │ │ ├── sGoldBarsTile.xml │ │ ├── sGoldIdolTile.images │ │ │ └── image 0.png │ │ ├── sGoldIdolTile.xml │ │ ├── sJarTile.images │ │ │ └── image 0.png │ │ ├── sJarTile.xml │ │ ├── sJetpackTile.images │ │ │ └── image 0.png │ │ ├── sJetpackTile.xml │ │ ├── sMacheteTile.images │ │ │ └── image 0.png │ │ ├── sMacheteTile.xml │ │ ├── sMattockTile.images │ │ │ └── image 0.png │ │ ├── sMattockTile.xml │ │ ├── sMegaMouthTile.images │ │ │ └── image 0.png │ │ ├── sMegaMouthTile.xml │ │ ├── sMittTile.images │ │ │ └── image 0.png │ │ ├── sMittTile.xml │ │ ├── sParachuteTile.images │ │ │ └── image 0.png │ │ ├── sParachuteTile.xml │ │ ├── sPiranhaTile.images │ │ │ └── image 0.png │ │ ├── sPiranhaTile.xml │ │ ├── sPistolTile.images │ │ │ └── image 0.png │ │ ├── sPistolTile.xml │ │ ├── sRockTile.images │ │ │ └── image 0.png │ │ ├── sRockTile.xml │ │ ├── sRopePileTile.images │ │ │ └── image 0.png │ │ ├── sRopePileTile.xml │ │ ├── sRubyBigTile.images │ │ │ └── image 0.png │ │ ├── sRubyBigTile.xml │ │ ├── sSapphireBigTile.images │ │ │ └── image 0.png │ │ ├── sSapphireBigTile.xml │ │ ├── sShotgunTile.images │ │ │ └── image 0.png │ │ ├── sShotgunTile.xml │ │ ├── sSpectaclesTile.images │ │ │ └── image 0.png │ │ ├── sSpectaclesTile.xml │ │ ├── sSpikeShoesTile.images │ │ │ └── image 0.png │ │ ├── sSpikeShoesTile.xml │ │ ├── sSpringShoesTile.images │ │ │ └── image 0.png │ │ ├── sSpringShoesTile.xml │ │ ├── sTeleporterTile.images │ │ │ └── image 0.png │ │ ├── sTeleporterTile.xml │ │ ├── sWebCannonTile.images │ │ │ └── image 0.png │ │ ├── sWebCannonTile.xml │ │ ├── sWebTile.images │ │ │ └── image 0.png │ │ └── sWebTile.xml │ ├── Mushrooms │ │ ├── _resources.list.xml │ │ ├── sMushroom1.images │ │ │ └── image 0.png │ │ ├── sMushroom1.xml │ │ ├── sMushroom2.images │ │ │ └── image 0.png │ │ ├── sMushroom2.xml │ │ ├── sMushroom3.images │ │ │ └── image 0.png │ │ ├── sMushroom3.xml │ │ ├── sMushroom4.images │ │ │ └── image 0.png │ │ ├── sMushroom4.xml │ │ ├── sMushroom5.images │ │ │ └── image 0.png │ │ ├── sMushroom5.xml │ │ ├── sMushroom6.images │ │ │ └── image 0.png │ │ ├── sMushroom6.xml │ │ ├── sMushroom7.images │ │ │ └── image 0.png │ │ ├── sMushroom7.xml │ │ ├── sMushroom8.images │ │ │ └── image 0.png │ │ └── sMushroom8.xml │ ├── Other │ │ ├── End │ │ │ ├── _resources.list.xml │ │ │ ├── sBigChest.images │ │ │ │ └── image 0.png │ │ │ ├── sBigChest.xml │ │ │ ├── sBigChestOpen.images │ │ │ │ └── image 0.png │ │ │ ├── sBigChestOpen.xml │ │ │ ├── sBigTreasure.images │ │ │ │ └── image 0.png │ │ │ ├── sBigTreasure.xml │ │ │ ├── sEnd2BG.images │ │ │ │ └── image 0.png │ │ │ ├── sEnd2BG.xml │ │ │ ├── sEndWall.images │ │ │ │ └── image 0.png │ │ │ ├── sEndWall.xml │ │ │ ├── sLavaSpray.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ └── image 2.png │ │ │ ├── sLavaSpray.xml │ │ │ ├── sPlayerSil.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ ├── image 5.png │ │ │ │ ├── image 6.png │ │ │ │ └── image 7.png │ │ │ ├── sPlayerSil.xml │ │ │ ├── sTreasureSil.images │ │ │ │ └── image 0.png │ │ │ ├── sTreasureSil.xml │ │ │ ├── sVolcanoFlame.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sVolcanoFlame.xml │ │ │ ├── sprite1112.images │ │ │ │ └── image 0.png │ │ │ └── sprite1112.xml │ │ ├── Intro │ │ │ ├── _resources.list.xml │ │ │ ├── sBGEnd3.images │ │ │ │ └── image 0.png │ │ │ ├── sBGEnd3.xml │ │ │ ├── sCamel.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sCamel.xml │ │ │ ├── sCamelDamsel.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sCamelDamsel.xml │ │ │ ├── sCamelTunnel.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ ├── image 4.png │ │ │ │ └── image 5.png │ │ │ ├── sCamelTunnel.xml │ │ │ ├── sDesert.images │ │ │ │ └── image 0.png │ │ │ ├── sDesert.xml │ │ │ ├── sDesert2.images │ │ │ │ └── image 0.png │ │ │ ├── sDesert2.xml │ │ │ ├── sDesertNight.images │ │ │ │ └── image 0.png │ │ │ ├── sDesertNight.xml │ │ │ ├── sDesertNight2.images │ │ │ │ └── image 0.png │ │ │ ├── sDesertNight2.xml │ │ │ ├── sDesertTop.images │ │ │ │ └── image 0.png │ │ │ ├── sDesertTop.xml │ │ │ ├── sDesertTopNight.images │ │ │ │ └── image 0.png │ │ │ ├── sDesertTopNight.xml │ │ │ ├── sFlare.images │ │ │ │ ├── image 0.png │ │ │ │ └── image 1.png │ │ │ ├── sFlare.xml │ │ │ ├── sFlareSpark.images │ │ │ │ ├── image 0.png │ │ │ │ ├── image 1.png │ │ │ │ ├── image 2.png │ │ │ │ ├── image 3.png │ │ │ │ └── image 4.png │ │ │ ├── sFlareSpark.xml │ │ │ ├── sIntroBG.images │ │ │ │ └── image 0.png │ │ │ ├── sIntroBG.xml │ │ │ ├── sMoon.images │ │ │ │ └── image 0.png │ │ │ ├── sMoon.xml │ │ │ ├── sPalmTree.images │ │ │ │ └── image 0.png │ │ │ ├── sPalmTree.xml │ │ │ ├── sPalmTreeDark.images │ │ │ │ └── image 0.png │ │ │ ├── sPalmTreeDark.xml │ │ │ ├── sShrub.images │ │ │ │ └── image 0.png │ │ │ ├── sShrub.xml │ │ │ ├── sShrubDark.images │ │ │ │ └── image 0.png │ │ │ └── sShrubDark.xml │ │ ├── Title │ │ │ ├── _resources.list.xml │ │ │ ├── sBronzeTrophy.images │ │ │ │ └── image 0.png │ │ │ ├── sBronzeTrophy.xml │ │ │ ├── sChangingDoor.images │ │ │ │ └── image 0.png │ │ │ ├── sChangingDoor.xml │ │ │ ├── sCopy.images │ │ │ │ └── image 0.png │ │ │ ├── sCopy.xml │ │ │ ├── sGoldTrophy.images │ │ │ │ └── image 0.png │ │ │ ├── sGoldTrophy.xml │ │ │ ├── sLevel13Sign.images │ │ │ │ └── image 0.png │ │ │ ├── sLevel13Sign.xml │ │ │ ├── sLevel5Sign.images │ │ │ │ └── image 0.png │ │ │ ├── sLevel5Sign.xml │ │ │ ├── sLevel9Sign.images │ │ │ │ └── image 0.png │ │ │ ├── sLevel9Sign.xml │ │ │ ├── sMoonDoor.images │ │ │ │ └── image 0.png │ │ │ ├── sMoonDoor.xml │ │ │ ├── sMultiGold.images │ │ │ │ └── image 0.png │ │ │ ├── sMultiGold.xml │ │ │ ├── sNew.images │ │ │ │ └── image 0.png │ │ │ ├── sNew.xml │ │ │ ├── sQuitSign.images │ │ │ │ └── image 0.png │ │ │ ├── sQuitSign.xml │ │ │ ├── sResetSign.images │ │ │ │ └── image 0.png │ │ │ ├── sResetSign.xml │ │ │ ├── sScoresSign.images │ │ │ │ └── image 0.png │ │ │ ├── sScoresSign.xml │ │ │ ├── sSilverTrophy.images │ │ │ │ └── image 0.png │ │ │ ├── sSilverTrophy.xml │ │ │ ├── sStarDoor.images │ │ │ │ └── image 0.png │ │ │ ├── sStarDoor.xml │ │ │ ├── sStartSign.images │ │ │ │ └── image 0.png │ │ │ ├── sStartSign.xml │ │ │ ├── sSunDoor.images │ │ │ │ └── image 0.png │ │ │ ├── sSunDoor.xml │ │ │ ├── sTitle.images │ │ │ │ └── image 0.png │ │ │ ├── sTitle.xml │ │ │ ├── sTitleBG.images │ │ │ │ └── image 0.png │ │ │ ├── sTitleBG.xml │ │ │ ├── sTutorialSign.images │ │ │ │ └── image 0.png │ │ │ └── sTutorialSign.xml │ │ ├── _resources.list.xml │ │ ├── sBasket.images │ │ │ └── image 0.png │ │ ├── sBasket.xml │ │ ├── sBasketSwoosh.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sBasketSwoosh.xml │ │ ├── sBox.images │ │ │ └── image 0.png │ │ ├── sBox.xml │ │ ├── sBoxChecked.images │ │ │ └── image 0.png │ │ ├── sBoxChecked.xml │ │ ├── sBoxMarked.images │ │ │ └── image 0.png │ │ ├── sBoxMarked.xml │ │ ├── sEditButton.images │ │ │ └── image 0.png │ │ ├── sEditButton.xml │ │ ├── sEditButtonPressed.images │ │ │ └── image 0.png │ │ ├── sEditButtonPressed.xml │ │ ├── sEndPlat.images │ │ │ └── image 0.png │ │ ├── sEndPlat.xml │ │ ├── sJoyConfigButton.images │ │ │ └── image 0.png │ │ ├── sJoyConfigButton.xml │ │ ├── sJoyConfigButtonPressed.images │ │ │ └── image 0.png │ │ ├── sJoyConfigButtonPressed.xml │ │ ├── sKeyConfigButton.images │ │ │ └── image 0.png │ │ ├── sKeyConfigButton.xml │ │ ├── sKeyConfigButtonPressed.images │ │ │ └── image 0.png │ │ ├── sKeyConfigButtonPressed.xml │ │ ├── sLoadButton.images │ │ │ └── image 0.png │ │ ├── sLoadButton.xml │ │ ├── sLoadButtonPressed.images │ │ │ └── image 0.png │ │ ├── sLoadButtonPressed.xml │ │ ├── sMenuBottom.images │ │ │ └── image 0.png │ │ ├── sMenuBottom.xml │ │ ├── sMenuLL.images │ │ │ └── image 0.png │ │ ├── sMenuLL.xml │ │ ├── sMenuLR.images │ │ │ └── image 0.png │ │ ├── sMenuLR.xml │ │ ├── sMenuLeft.images │ │ │ └── image 0.png │ │ ├── sMenuLeft.xml │ │ ├── sMenuRight.images │ │ │ └── image 0.png │ │ ├── sMenuRight.xml │ │ ├── sMenuSelOff.images │ │ │ └── image 0.png │ │ ├── sMenuSelOff.xml │ │ ├── sMenuSelOn.images │ │ │ └── image 0.png │ │ ├── sMenuSelOn.xml │ │ ├── sMenuTop.images │ │ │ └── image 0.png │ │ ├── sMenuTop.xml │ │ ├── sMenuUL.images │ │ │ └── image 0.png │ │ ├── sMenuUL.xml │ │ ├── sMenuUR.images │ │ │ └── image 0.png │ │ ├── sMenuUR.xml │ │ ├── sNewButton.images │ │ │ └── image 0.png │ │ ├── sNewButton.xml │ │ ├── sNewButtonPressed.images │ │ │ └── image 0.png │ │ ├── sNewButtonPressed.xml │ │ ├── sOKButton.images │ │ │ └── image 0.png │ │ ├── sOKButton.xml │ │ ├── sOKButtonPressed.images │ │ │ └── image 0.png │ │ ├── sOKButtonPressed.xml │ │ ├── sPageDown.images │ │ │ └── image 0.png │ │ ├── sPageDown.xml │ │ ├── sPageUp.images │ │ │ └── image 0.png │ │ ├── sPageUp.xml │ │ ├── sRim.images │ │ │ └── image 0.png │ │ ├── sRim.xml │ │ ├── sRimDeflect.images │ │ │ └── image 0.png │ │ ├── sRimDeflect.xml │ │ ├── sSlider.images │ │ │ └── image 0.png │ │ ├── sSlider.xml │ │ ├── sSliderBG.images │ │ │ └── image 0.png │ │ ├── sSliderBG.xml │ │ ├── sTestButton.images │ │ │ └── image 0.png │ │ ├── sTestButton.xml │ │ ├── sTestButtonPressed.images │ │ │ └── image 0.png │ │ └── sTestButtonPressed.xml │ ├── Traps │ │ ├── _resources.list.xml │ │ ├── sArrowTrapLeft.images │ │ │ └── image 0.png │ │ ├── sArrowTrapLeft.xml │ │ ├── sArrowTrapLeftLit.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sArrowTrapLeftLit.xml │ │ ├── sArrowTrapRight.images │ │ │ └── image 0.png │ │ ├── sArrowTrapRight.xml │ │ ├── sArrowTrapRightLit.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sArrowTrapRightLit.xml │ │ ├── sBoulder.images │ │ │ └── image 0.png │ │ ├── sBoulder.xml │ │ ├── sBoulderRotateL.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sBoulderRotateL.xml │ │ ├── sBoulderRotateR.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sBoulderRotateR.xml │ │ ├── sCeilingTrap.images │ │ │ └── image 0.png │ │ ├── sCeilingTrap.xml │ │ ├── sCeilingTrapS.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ └── image 5.png │ │ ├── sCeilingTrapS.xml │ │ ├── sDoor.images │ │ │ └── image 0.png │ │ ├── sDoor.xml │ │ ├── sGTHHole.images │ │ │ └── image 0.png │ │ ├── sGTHHole.xml │ │ ├── sGiantTikiHead.images │ │ │ └── image 0.png │ │ ├── sGiantTikiHead.xml │ │ ├── sKaliHead1.images │ │ │ └── image 0.png │ │ ├── sKaliHead1.xml │ │ ├── sKaliHead2.images │ │ │ └── image 0.png │ │ ├── sKaliHead2.xml │ │ ├── sKaliHead3.images │ │ │ └── image 0.png │ │ ├── sKaliHead3.xml │ │ ├── sSmashTrap.images │ │ │ └── image 0.png │ │ ├── sSmashTrap.xml │ │ ├── sSmashTrapLit.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ └── image 4.png │ │ ├── sSmashTrapLit.xml │ │ ├── sSpearTrap1.images │ │ │ └── image 0.png │ │ ├── sSpearTrap1.xml │ │ ├── sSpearTrap2.images │ │ │ └── image 0.png │ │ ├── sSpearTrap2.xml │ │ ├── sSpearTrapLit.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ └── image 3.png │ │ ├── sSpearTrapLit.xml │ │ ├── sSpearsLeft.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 12.png │ │ │ ├── image 13.png │ │ │ ├── image 14.png │ │ │ ├── image 15.png │ │ │ ├── image 16.png │ │ │ ├── image 17.png │ │ │ ├── image 18.png │ │ │ ├── image 19.png │ │ │ ├── image 2.png │ │ │ ├── image 20.png │ │ │ ├── image 21.png │ │ │ ├── image 22.png │ │ │ ├── image 23.png │ │ │ ├── image 24.png │ │ │ ├── image 25.png │ │ │ ├── image 26.png │ │ │ ├── image 27.png │ │ │ ├── image 28.png │ │ │ ├── image 29.png │ │ │ ├── image 3.png │ │ │ ├── image 30.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sSpearsLeft.xml │ │ ├── sSpearsRight.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 10.png │ │ │ ├── image 11.png │ │ │ ├── image 12.png │ │ │ ├── image 13.png │ │ │ ├── image 14.png │ │ │ ├── image 15.png │ │ │ ├── image 16.png │ │ │ ├── image 17.png │ │ │ ├── image 18.png │ │ │ ├── image 19.png │ │ │ ├── image 2.png │ │ │ ├── image 20.png │ │ │ ├── image 21.png │ │ │ ├── image 22.png │ │ │ ├── image 23.png │ │ │ ├── image 24.png │ │ │ ├── image 25.png │ │ │ ├── image 26.png │ │ │ ├── image 27.png │ │ │ ├── image 28.png │ │ │ ├── image 29.png │ │ │ ├── image 3.png │ │ │ ├── image 30.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ ├── image 8.png │ │ │ └── image 9.png │ │ ├── sSpearsRight.xml │ │ ├── sSpikes.images │ │ │ └── image 0.png │ │ ├── sSpikes.xml │ │ ├── sSpikesBlood.images │ │ │ └── image 0.png │ │ ├── sSpikesBlood.xml │ │ ├── sSpringTrap.images │ │ │ └── image 0.png │ │ ├── sSpringTrap.xml │ │ ├── sSpringTrapSprung.images │ │ │ ├── image 0.png │ │ │ ├── image 1.png │ │ │ ├── image 2.png │ │ │ ├── image 3.png │ │ │ ├── image 4.png │ │ │ ├── image 5.png │ │ │ ├── image 6.png │ │ │ ├── image 7.png │ │ │ └── image 8.png │ │ ├── sSpringTrapSprung.xml │ │ ├── sThwompTrap.images │ │ │ └── image 0.png │ │ └── sThwompTrap.xml │ ├── _resources.list.xml │ ├── sBlack.images │ │ └── image 0.png │ ├── sBlack.xml │ ├── sBlackFadeUp.images │ │ └── image 0.png │ ├── sBlackFadeUp.xml │ ├── sFont.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 10.png │ │ ├── image 11.png │ │ ├── image 12.png │ │ ├── image 13.png │ │ ├── image 14.png │ │ ├── image 15.png │ │ ├── image 16.png │ │ ├── image 17.png │ │ ├── image 18.png │ │ ├── image 19.png │ │ ├── image 2.png │ │ ├── image 20.png │ │ ├── image 21.png │ │ ├── image 22.png │ │ ├── image 23.png │ │ ├── image 24.png │ │ ├── image 25.png │ │ ├── image 26.png │ │ ├── image 27.png │ │ ├── image 28.png │ │ ├── image 29.png │ │ ├── image 3.png │ │ ├── image 30.png │ │ ├── image 31.png │ │ ├── image 32.png │ │ ├── image 33.png │ │ ├── image 34.png │ │ ├── image 35.png │ │ ├── image 36.png │ │ ├── image 37.png │ │ ├── image 38.png │ │ ├── image 39.png │ │ ├── image 4.png │ │ ├── image 40.png │ │ ├── image 41.png │ │ ├── image 42.png │ │ ├── image 43.png │ │ ├── image 44.png │ │ ├── image 45.png │ │ ├── image 46.png │ │ ├── image 47.png │ │ ├── image 48.png │ │ ├── image 49.png │ │ ├── image 5.png │ │ ├── image 50.png │ │ ├── image 51.png │ │ ├── image 52.png │ │ ├── image 53.png │ │ ├── image 54.png │ │ ├── image 55.png │ │ ├── image 56.png │ │ ├── image 57.png │ │ ├── image 58.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ ├── sFont.xml │ ├── sFontOld.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 2.png │ │ ├── image 3.png │ │ ├── image 4.png │ │ ├── image 5.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ ├── sFontOld.xml │ ├── sFontSmall.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 10.png │ │ ├── image 11.png │ │ ├── image 12.png │ │ ├── image 13.png │ │ ├── image 14.png │ │ ├── image 15.png │ │ ├── image 16.png │ │ ├── image 17.png │ │ ├── image 18.png │ │ ├── image 19.png │ │ ├── image 2.png │ │ ├── image 20.png │ │ ├── image 21.png │ │ ├── image 22.png │ │ ├── image 23.png │ │ ├── image 24.png │ │ ├── image 25.png │ │ ├── image 26.png │ │ ├── image 27.png │ │ ├── image 28.png │ │ ├── image 29.png │ │ ├── image 3.png │ │ ├── image 30.png │ │ ├── image 31.png │ │ ├── image 32.png │ │ ├── image 33.png │ │ ├── image 34.png │ │ ├── image 35.png │ │ ├── image 36.png │ │ ├── image 37.png │ │ ├── image 38.png │ │ ├── image 39.png │ │ ├── image 4.png │ │ ├── image 40.png │ │ ├── image 41.png │ │ ├── image 42.png │ │ ├── image 43.png │ │ ├── image 44.png │ │ ├── image 45.png │ │ ├── image 46.png │ │ ├── image 47.png │ │ ├── image 48.png │ │ ├── image 49.png │ │ ├── image 5.png │ │ ├── image 50.png │ │ ├── image 51.png │ │ ├── image 52.png │ │ ├── image 53.png │ │ ├── image 54.png │ │ ├── image 55.png │ │ ├── image 56.png │ │ ├── image 57.png │ │ ├── image 58.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ ├── sFontSmall.xml │ ├── sLvl.images │ │ └── image 0.png │ ├── sLvl.xml │ ├── sRed.images │ │ └── image 0.png │ ├── sRed.xml │ ├── sRoom.images │ │ └── image 0.png │ ├── sRoom.xml │ └── supersound │ │ ├── _resources.list.xml │ │ ├── s_0.images │ │ ├── image 0.png │ │ ├── image 1.png │ │ ├── image 2.png │ │ ├── image 3.png │ │ ├── image 4.png │ │ ├── image 5.png │ │ ├── image 6.png │ │ ├── image 7.png │ │ ├── image 8.png │ │ └── image 9.png │ │ ├── s_0.xml │ │ ├── s_1.images │ │ └── image 0.png │ │ └── s_1.xml ├── Time Lines │ └── _resources.list.xml ├── game icon.ico └── loading image.png └── static_resources ├── credits.txt ├── sound ├── alert.wav ├── alien.wav ├── arrowtrap.wav ├── bat.wav ├── bigjump.wav ├── blink1.wav ├── blink2.wav ├── boing.wav ├── bombready.wav ├── boss.ogg ├── bowpull.wav ├── break.wav ├── cave.ogg ├── cavemandie.wav ├── chestopen.wav ├── click.wav ├── climb1.wav ├── climb2.wav ├── coin.wav ├── credits.ogg ├── crunch.wav ├── damsel.wav ├── die.wav ├── explosion.wav ├── flame.wav ├── frog.wav ├── gem.wav ├── ghost.wav ├── giantspider.wav ├── gspiderjump.wav ├── hit.wav ├── hurt.wav ├── ice.ogg ├── ignite.wav ├── jetpack.wav ├── jump.wav ├── kiss.wav ├── land.wav ├── laser.wav ├── lasercharge.wav ├── letsexplore.wav ├── lush.ogg ├── mattockbreak.wav ├── monkey.wav ├── pause.wav ├── pfall.wav ├── pickup.wav ├── psychic.wav ├── push.wav ├── shotgun.wav ├── slam.wav ├── smallexplode.wav ├── spiderjump.wav ├── splash.wav ├── steps.wav ├── teleport.wav ├── temple.ogg ├── tfall.wav ├── throw.wav ├── thud.wav ├── thump.wav ├── title.ogg ├── trap.wav ├── victory.ogg ├── whip.wav ├── yetiyell.wav └── zombie.wav └── supersound.dll /config/Backgrounds/bgCave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Backgrounds/bgCave.png -------------------------------------------------------------------------------- /config/Backgrounds/bgCaveBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Backgrounds/bgCaveBack.png -------------------------------------------------------------------------------- /config/Constants.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config/Extension Packages.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config/Paths/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config/Scripts/Control/checkAttack.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.attack) 2 | return gamepad.attack; 3 | else 4 | return (keyboard_check(global.keyAttackVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkAttackPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.attackPressed) 2 | return gamepad.attackPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyAttackVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkAttackReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.attackReleased) 2 | return gamepad.attackReleased; 3 | else 4 | return (keyboard_check_released(global.keyAttackVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkBombPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.bombPressed) 2 | return gamepad.bombPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyBombVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkDown.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.down) 2 | return gamepad.down; 3 | else 4 | return (keyboard_check(global.keyDownVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkDownPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.downPressed) 2 | return gamepad.downPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyDownVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkFlarePressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.flarePressed) 2 | return gamepad.flarePressed; 3 | else 4 | return (keyboard_check_pressed(global.keyFlareVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkItemPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.itemPressed) 2 | return gamepad.itemPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyItemVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkJump.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.jump) 2 | return gamepad.jump; 3 | else 4 | return (keyboard_check(global.keyJumpVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkJumpPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.jumpPressed) 2 | return gamepad.jumpPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyJumpVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkJumpReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.jumpReleased) 2 | return gamepad.jumpReleased; 3 | else 4 | return (keyboard_check_released(global.keyJumpVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkLeft.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.left) 2 | return gamepad.left; 3 | else 4 | return (keyboard_check(global.keyLeftVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkLeftPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.leftPressed) 2 | return gamepad.leftPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyLeftVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkLeftReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.leftReleased) 2 | return gamepad.leftReleased; 3 | else 4 | return (keyboard_check_released(global.keyLeftVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkPayPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.payPressed) 2 | return gamepad.payPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyPayVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkRight.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.right) 2 | return gamepad.right; 3 | else 4 | return (keyboard_check(global.keyRightVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkRightPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.rightPressed) 2 | return gamepad.rightPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyRightVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkRightReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.rightReleased) 2 | return gamepad.rightReleased; 3 | else 4 | return (keyboard_check_released(global.keyRightVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkRopePressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.ropePressed) 2 | return gamepad.ropePressed; 3 | else 4 | return (keyboard_check_pressed(global.keyRopeVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkRun.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.run) 2 | return gamepad.run; 3 | else 4 | return (keyboard_check(global.keyRunVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkStartPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.startPressed) 2 | return gamepad.startPressed; 3 | else 4 | return (keyboard_check_pressed(vk_escape)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkUp.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.up) 2 | return gamepad.up; 3 | else 4 | return (keyboard_check(global.keyUpVal)); -------------------------------------------------------------------------------- /config/Scripts/Control/checkUpPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.upPressed) 2 | return gamepad.upPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyUpVal)); -------------------------------------------------------------------------------- /config/Scripts/rand.gml: -------------------------------------------------------------------------------- 1 | randNum = argument1 - argument0 + 1; 2 | return floor(random(randNum)) + argument0; -------------------------------------------------------------------------------- /config/Scripts/scrExit.gml: -------------------------------------------------------------------------------- 1 | if (oCheckBox5.on) execute_program(global.spelunkyEXE, 0, false); 2 | game_end(); 3 | -------------------------------------------------------------------------------- /config/Sounds/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config/Sprites/Cave/sAltar.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sAltar.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sCaveBG.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sCaveBG.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sCaveDown.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sCaveDown.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sCaveFringe.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sCaveFringe.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sCaveTop.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sCaveTop.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sConfigLogo.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sConfigLogo.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sDoor.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sDoor.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sGoldIdol.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sGoldIdol.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Cave/sPlayer.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Cave/sPlayer.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sBox.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sBox.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sBoxChecked.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sBoxChecked.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sBoxMarked.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sBoxMarked.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sEndPlat.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sEndPlat.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sExitButton.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sExitButton.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sLangOkButton.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sLangOkButton.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sLanguageDown.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sLanguageDown.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sLanguageUp.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sLanguageUp.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuBottom.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuBottom.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuLL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuLL.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuLR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuLR.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuLeft.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuLeft.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuRight.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuRight.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuTop.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuTop.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuUL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuUL.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sMenuUR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sMenuUR.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sOKButton.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sOKButton.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sPageDown.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sPageDown.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sPageUp.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sPageUp.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sSlider.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sSlider.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/Other/sSliderBG.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/Other/sSliderBG.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/sBlack.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sBlack.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 1.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 10.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 11.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 12.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 13.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 14.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 15.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 16.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 17.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 18.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 19.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 2.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 20.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 21.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 22.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 23.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 24.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 25.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 26.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 27.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 28.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 29.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 3.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 30.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 31.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 32.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 33.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 34.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 35.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 36.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 37.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 38.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 39.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 4.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 40.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 41.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 42.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 43.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 44.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 45.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 46.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 47.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 48.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 49.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 5.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 50.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 51.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 52.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 53.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 54.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 55.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 56.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 57.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 58.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 6.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 7.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 8.png -------------------------------------------------------------------------------- /config/Sprites/sFont.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFont.images/image 9.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 1.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 2.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 3.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 4.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 5.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 6.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 7.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 8.png -------------------------------------------------------------------------------- /config/Sprites/sFontOld.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontOld.images/image 9.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 0.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 1.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 10.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 11.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 12.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 13.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 14.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 15.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 16.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 17.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 18.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 19.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 2.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 20.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 21.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 22.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 23.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 24.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 25.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 26.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 27.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 28.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 29.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 3.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 30.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 31.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 32.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 33.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 34.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 35.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 36.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 37.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 38.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 39.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 4.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 40.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 41.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 42.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 43.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 44.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 45.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 46.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 47.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 48.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 49.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 5.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 50.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 51.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 52.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 53.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 54.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 55.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 56.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 57.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 58.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 6.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 7.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 8.png -------------------------------------------------------------------------------- /config/Sprites/sFontSmall.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sFontSmall.images/image 9.png -------------------------------------------------------------------------------- /config/Sprites/sRotatingFlags.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/Sprites/sRotatingFlags.images/image 0.png -------------------------------------------------------------------------------- /config/Time Lines/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /config/game icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/game icon.ico -------------------------------------------------------------------------------- /config/loading image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/config/loading image.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/backgroundClouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/backgroundClouds.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/backgroundNight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/backgroundNight.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgAlienShip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgAlienShip.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgAlienShip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgAlienShip2.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgAlienShip3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgAlienShip3.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgCave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgCave.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgCaveTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgCaveTop.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgCaveTop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgCaveTop2.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgCaveTop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgCaveTop3.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgCaveTop4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgCaveTop4.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgClouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgClouds.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgDiceSign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgDiceSign.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgExtras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgExtras.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgExtrasIce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgExtrasIce.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgExtrasLush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgExtrasLush.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgExtrasTemple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgExtrasTemple.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgHmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgHmm.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgKaliBody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgKaliBody.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgKaliHeads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgKaliHeads.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgLadyXoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgLadyXoc.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgSky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgSky.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgStatues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgStatues.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgTemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgTemp.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgTemple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgTemple.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgTiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgTiki.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgTikiArms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgTikiArms.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgTitle.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgTrees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgTrees.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgVineRoots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgVineRoots.png -------------------------------------------------------------------------------- /spelunky/Backgrounds/bgWanted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Backgrounds/bgWanted.png -------------------------------------------------------------------------------- /spelunky/Constants.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spelunky/Extension Packages.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spelunky/Fonts/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spelunky/Paths/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spelunky/Rooms/supersound/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /spelunky/Scripts/Audio/playMusic.gml: -------------------------------------------------------------------------------- 1 | if (global.music and not SS_IsSoundPlaying(argument0)) 2 | { 3 | if (argument1) 4 | SS_LoopSound(argument0); 5 | else 6 | SS_PlaySound(argument0); 7 | } -------------------------------------------------------------------------------- /spelunky/Scripts/Audio/playSound.gml: -------------------------------------------------------------------------------- 1 | SS_PlaySound(argument0); -------------------------------------------------------------------------------- /spelunky/Scripts/Collision/hidden/approximatelyZero.gml: -------------------------------------------------------------------------------- 1 | /* 2 | Returns whether the argument is between -0.1 and 0.1 3 | */ 4 | if argument0>-0.1 and argument0<0.1 5 | return true 6 | else 7 | return false -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkAttack.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.attack) 2 | return gamepad.attack; 3 | else 4 | return (keyboard_check(global.keyAttackVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkAttackPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.attackPressed) 2 | return gamepad.attackPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyAttackVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkAttackReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.attackReleased) 2 | return gamepad.attackReleased; 3 | else 4 | return (keyboard_check_released(global.keyAttackVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkBombPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.bombPressed) 2 | return gamepad.bombPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyBombVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkDown.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.down) 2 | return gamepad.down; 3 | else 4 | return (keyboard_check(global.keyDownVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkDownPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.downPressed) 2 | return gamepad.downPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyDownVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkFlarePressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.flarePressed) 2 | return gamepad.flarePressed; 3 | else 4 | return (keyboard_check_pressed(global.keyFlareVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkItemPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.itemPressed) 2 | return gamepad.itemPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyItemVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkJump.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.jump) 2 | return gamepad.jump; 3 | else 4 | return (keyboard_check(global.keyJumpVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkJumpPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.jumpPressed) 2 | return gamepad.jumpPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyJumpVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkJumpReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.jumpReleased) 2 | return gamepad.jumpReleased; 3 | else 4 | return (keyboard_check_released(global.keyJumpVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkLeft.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.left) 2 | return gamepad.left; 3 | else 4 | return (keyboard_check(global.keyLeftVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkLeftPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.leftPressed) 2 | return gamepad.leftPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyLeftVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkLeftReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.leftReleased) 2 | return gamepad.leftReleased; 3 | else 4 | return (keyboard_check_released(global.keyLeftVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkPayPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.payPressed) 2 | return gamepad.payPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyPayVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkRight.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.right) 2 | return gamepad.right; 3 | else 4 | return (keyboard_check(global.keyRightVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkRightPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.rightPressed) 2 | return gamepad.rightPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyRightVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkRightReleased.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.rightReleased) 2 | return gamepad.rightReleased; 3 | else 4 | return (keyboard_check_released(global.keyRightVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkRopePressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.ropePressed) 2 | return gamepad.ropePressed; 3 | else 4 | return (keyboard_check_pressed(global.keyRopeVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkRun.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.run) 2 | return gamepad.run; 3 | else 4 | return (keyboard_check(global.keyRunVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkStartPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.startPressed) 2 | return gamepad.startPressed; 3 | else 4 | return (keyboard_check_pressed(vk_escape)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkUp.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.up) 2 | return gamepad.up; 3 | else 4 | return (keyboard_check(global.keyUpVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/Control/checkUpPressed.gml: -------------------------------------------------------------------------------- 1 | if (gamepad.upPressed) 2 | return gamepad.upPressed; 3 | else 4 | return (keyboard_check_pressed(global.keyUpVal)); -------------------------------------------------------------------------------- /spelunky/Scripts/In Level/getKissValue.gml: -------------------------------------------------------------------------------- 1 | return 10000+5000*(global.currLevel-2); -------------------------------------------------------------------------------- /spelunky/Scripts/In Level/isRoom.gml: -------------------------------------------------------------------------------- 1 | // 2 | // isRoom(name) 3 | // 4 | // Check current room with name (e.g. "rLevel") 5 | // 6 | 7 | if (room_get_name(room) == argument0) return true; 8 | else return false; 9 | -------------------------------------------------------------------------------- /spelunky/Scripts/Platform Engine/makeActive.gml: -------------------------------------------------------------------------------- 1 | /* 2 | Makes the object "active." An "active" object is one that has the variables 3 | xVel, yVel, xAcc, and yAcc. 4 | */ 5 | xVel=0 6 | yVel=0 7 | xAcc=0 8 | yAcc=0 -------------------------------------------------------------------------------- /spelunky/Scripts/rand.gml: -------------------------------------------------------------------------------- 1 | randNum = argument1 - argument0 + 1; 2 | return floor(random(randNum)) + argument0; -------------------------------------------------------------------------------- /spelunky/Sounds/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sDark.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sDark.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIce.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIce.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIceDL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIceDL.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIceDR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIceDR.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIceLR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIceLR.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIceUL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIceUL.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIceUR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIceUR.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sIceUp.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sIceUp.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sMoai.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sMoai.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sMoai2.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sMoai2.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Dark/sMoai3.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Dark/sMoai3.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Gold/sGold.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Gold/sGold.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Lush/sLush.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Lush/sLush.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Shop/sLamp.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Shop/sLamp.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Shop/sLamp.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Shop/sLamp.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Shop/sLamp.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Shop/sLamp.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Shop/sSign.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Shop/sSign.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/Water/sLava.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/Water/sLava.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/sMetalBlock.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/sMetalBlock.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Blocks/sMetalDoor.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Blocks/sMetalDoor.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBlood.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBlood.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBlood.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBlood.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBlood.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBlood.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBone.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBone.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBubble.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBubble.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBullet.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBullet.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sBurn.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sBurn.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sDrip.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sDrip.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sExplosion.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sExplosion.images/image 9.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sFlame.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sFlame.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLaser.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLaser.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLavaDrip.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLavaDrip.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLavaDrip.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLavaDrip.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLavaDrip.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLavaDrip.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLavaDrip.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLavaDrip.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLavaDrip.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLavaDrip.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeaf.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeaf.images/image 9.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sLeafStill.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sLeafStill.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sPoof.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sPoof.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sPoof.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sPoof.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sPoof.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sPoof.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sPoof.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sPoof.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sPoof.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sPoof.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sPoof.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sPoof.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sRubble.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sRubble.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sRubbleTan.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sRubbleTan.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSmokePuff.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSmokePuff.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSplash.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSplash.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSplash.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSplash.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSplash.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSplash.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSplash.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSplash.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSplash.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSplash.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Effects/sSplash.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Effects/sSplash.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlien.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlien.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlien.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlien.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlien.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlien.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlien.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlien.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlienBoss.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlienBoss.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlienBoss.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlienBoss.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlienBoss.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlienBoss.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sAlienBoss.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sAlienBoss.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatHang.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatHang.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatLeft.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatLeft.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatLeft.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatLeft.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatLeft.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatLeft.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatRight.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatRight.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatRight.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatRight.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sBatRight.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sBatRight.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sFrogJumpL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sFrogJumpL.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sFrogLeft.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sFrogLeft.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sFrogLeft.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sFrogLeft.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sFrogLeft.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sFrogLeft.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sOlmecSlam.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sOlmecSlam.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sSight.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sSight.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sSnakeLeft.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sSnakeLeft.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sSpider.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sSpider.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sSpider.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sSpider.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sSpider.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sSpider.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sSpider.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sSpider.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFO.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFO.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 10.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 11.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 12.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 13.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 14.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 15.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 16.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 17.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 18.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 19.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/Enemies/sUFOBlast.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Enemies/sUFOBlast.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sArrowIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sArrowIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sBombIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sBombIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sCapeIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sCapeIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sCompassIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sCompassIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sDamselIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sDamselIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sDeathMask.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sDeathMask.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sDollarSign.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sDollarSign.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sGlovesIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sGlovesIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHeart.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHeart.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHintPoint.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHintPoint.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHintPoint.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHintPoint.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHintPoint.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHintPoint.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHintPoint.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHintPoint.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHintPoint.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHintPoint.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sHoopsIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sHoopsIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sJetpackIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sJetpackIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sKapalaIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sKapalaIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sKapalaIcon.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sKapalaIcon.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sKapalaIcon.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sKapalaIcon.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sKapalaIcon.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sKapalaIcon.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sKapalaIcon.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sKapalaIcon.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sMittIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sMittIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sRopeIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sRopeIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/HUD/sTimerIcon.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/HUD/sTimerIcon.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/Title/sNew.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/Title/sNew.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sBasket.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sBasket.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sBox.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sBox.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sBoxMarked.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sBoxMarked.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sEndPlat.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sEndPlat.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuLL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuLL.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuLR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuLR.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuLeft.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuLeft.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuRight.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuRight.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuSelOn.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuSelOn.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuTop.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuTop.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuUL.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuUL.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sMenuUR.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sMenuUR.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sNewButton.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sNewButton.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sOKButton.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sOKButton.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sPageDown.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sPageDown.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sPageUp.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sPageUp.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sRim.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sRim.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sSlider.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sSlider.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Other/sSliderBG.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Other/sSliderBG.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sBoulder.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sBoulder.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sDoor.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sDoor.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sGTHHole.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sGTHHole.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sKaliHead1.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sKaliHead1.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sKaliHead2.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sKaliHead2.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sKaliHead3.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sKaliHead3.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sSmashTrap.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sSmashTrap.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/Traps/sSpikes.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/Traps/sSpikes.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sBlack.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sBlack.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sBlackFadeUp.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sBlackFadeUp.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 10.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 11.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 12.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 13.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 14.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 15.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 16.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 17.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 18.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 19.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 20.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 21.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 22.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 23.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 24.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 25.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 26.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 27.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 28.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 29.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 30.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 31.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 32.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 33.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 34.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 35.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 36.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 37.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 38.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 39.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 40.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 41.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 42.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 43.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 44.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 45.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 46.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 47.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 48.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 49.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 50.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 51.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 52.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 53.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 54.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 55.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 56.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 57.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 58.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFont.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFont.images/image 9.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontOld.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontOld.images/image 9.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 10.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 11.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 12.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 13.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 14.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 15.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 16.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 17.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 18.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 19.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 20.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 21.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 22.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 23.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 24.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 25.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 26.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 27.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 28.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 29.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 30.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 31.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 32.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 33.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 34.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 35.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 36.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 37.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 38.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 39.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 40.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 41.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 42.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 43.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 44.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 45.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 46.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 47.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 48.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 49.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 50.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 51.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 52.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 53.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 54.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 55.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 56.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 57.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 58.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/sFontSmall.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sFontSmall.images/image 9.png -------------------------------------------------------------------------------- /spelunky/Sprites/sLvl.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sLvl.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sRed.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sRed.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/sRoom.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/sRoom.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 1.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 2.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 3.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 4.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 5.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 6.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 7.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 8.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_0.images/image 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_0.images/image 9.png -------------------------------------------------------------------------------- /spelunky/Sprites/supersound/s_1.images/image 0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/Sprites/supersound/s_1.images/image 0.png -------------------------------------------------------------------------------- /spelunky/Time Lines/_resources.list.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /spelunky/game icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/game icon.ico -------------------------------------------------------------------------------- /spelunky/loading image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/spelunky/loading image.png -------------------------------------------------------------------------------- /static_resources/sound/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/alert.wav -------------------------------------------------------------------------------- /static_resources/sound/alien.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/alien.wav -------------------------------------------------------------------------------- /static_resources/sound/arrowtrap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/arrowtrap.wav -------------------------------------------------------------------------------- /static_resources/sound/bat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/bat.wav -------------------------------------------------------------------------------- /static_resources/sound/bigjump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/bigjump.wav -------------------------------------------------------------------------------- /static_resources/sound/blink1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/blink1.wav -------------------------------------------------------------------------------- /static_resources/sound/blink2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/blink2.wav -------------------------------------------------------------------------------- /static_resources/sound/boing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/boing.wav -------------------------------------------------------------------------------- /static_resources/sound/bombready.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/bombready.wav -------------------------------------------------------------------------------- /static_resources/sound/boss.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/boss.ogg -------------------------------------------------------------------------------- /static_resources/sound/bowpull.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/bowpull.wav -------------------------------------------------------------------------------- /static_resources/sound/break.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/break.wav -------------------------------------------------------------------------------- /static_resources/sound/cave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/cave.ogg -------------------------------------------------------------------------------- /static_resources/sound/cavemandie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/cavemandie.wav -------------------------------------------------------------------------------- /static_resources/sound/chestopen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/chestopen.wav -------------------------------------------------------------------------------- /static_resources/sound/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/click.wav -------------------------------------------------------------------------------- /static_resources/sound/climb1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/climb1.wav -------------------------------------------------------------------------------- /static_resources/sound/climb2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/climb2.wav -------------------------------------------------------------------------------- /static_resources/sound/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/coin.wav -------------------------------------------------------------------------------- /static_resources/sound/credits.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/credits.ogg -------------------------------------------------------------------------------- /static_resources/sound/crunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/crunch.wav -------------------------------------------------------------------------------- /static_resources/sound/damsel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/damsel.wav -------------------------------------------------------------------------------- /static_resources/sound/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/die.wav -------------------------------------------------------------------------------- /static_resources/sound/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/explosion.wav -------------------------------------------------------------------------------- /static_resources/sound/flame.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/flame.wav -------------------------------------------------------------------------------- /static_resources/sound/frog.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/frog.wav -------------------------------------------------------------------------------- /static_resources/sound/gem.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/gem.wav -------------------------------------------------------------------------------- /static_resources/sound/ghost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/ghost.wav -------------------------------------------------------------------------------- /static_resources/sound/giantspider.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/giantspider.wav -------------------------------------------------------------------------------- /static_resources/sound/gspiderjump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/gspiderjump.wav -------------------------------------------------------------------------------- /static_resources/sound/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/hit.wav -------------------------------------------------------------------------------- /static_resources/sound/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/hurt.wav -------------------------------------------------------------------------------- /static_resources/sound/ice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/ice.ogg -------------------------------------------------------------------------------- /static_resources/sound/ignite.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/ignite.wav -------------------------------------------------------------------------------- /static_resources/sound/jetpack.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/jetpack.wav -------------------------------------------------------------------------------- /static_resources/sound/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/jump.wav -------------------------------------------------------------------------------- /static_resources/sound/kiss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/kiss.wav -------------------------------------------------------------------------------- /static_resources/sound/land.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/land.wav -------------------------------------------------------------------------------- /static_resources/sound/laser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/laser.wav -------------------------------------------------------------------------------- /static_resources/sound/lasercharge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/lasercharge.wav -------------------------------------------------------------------------------- /static_resources/sound/letsexplore.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/letsexplore.wav -------------------------------------------------------------------------------- /static_resources/sound/lush.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/lush.ogg -------------------------------------------------------------------------------- /static_resources/sound/mattockbreak.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/mattockbreak.wav -------------------------------------------------------------------------------- /static_resources/sound/monkey.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/monkey.wav -------------------------------------------------------------------------------- /static_resources/sound/pause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/pause.wav -------------------------------------------------------------------------------- /static_resources/sound/pfall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/pfall.wav -------------------------------------------------------------------------------- /static_resources/sound/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/pickup.wav -------------------------------------------------------------------------------- /static_resources/sound/psychic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/psychic.wav -------------------------------------------------------------------------------- /static_resources/sound/push.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/push.wav -------------------------------------------------------------------------------- /static_resources/sound/shotgun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/shotgun.wav -------------------------------------------------------------------------------- /static_resources/sound/slam.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/slam.wav -------------------------------------------------------------------------------- /static_resources/sound/smallexplode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/smallexplode.wav -------------------------------------------------------------------------------- /static_resources/sound/spiderjump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/spiderjump.wav -------------------------------------------------------------------------------- /static_resources/sound/splash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/splash.wav -------------------------------------------------------------------------------- /static_resources/sound/steps.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/steps.wav -------------------------------------------------------------------------------- /static_resources/sound/teleport.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/teleport.wav -------------------------------------------------------------------------------- /static_resources/sound/temple.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/temple.ogg -------------------------------------------------------------------------------- /static_resources/sound/tfall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/tfall.wav -------------------------------------------------------------------------------- /static_resources/sound/throw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/throw.wav -------------------------------------------------------------------------------- /static_resources/sound/thud.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/thud.wav -------------------------------------------------------------------------------- /static_resources/sound/thump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/thump.wav -------------------------------------------------------------------------------- /static_resources/sound/title.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/title.ogg -------------------------------------------------------------------------------- /static_resources/sound/trap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/trap.wav -------------------------------------------------------------------------------- /static_resources/sound/victory.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/victory.ogg -------------------------------------------------------------------------------- /static_resources/sound/whip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/whip.wav -------------------------------------------------------------------------------- /static_resources/sound/yetiyell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/yetiyell.wav -------------------------------------------------------------------------------- /static_resources/sound/zombie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/sound/zombie.wav -------------------------------------------------------------------------------- /static_resources/supersound.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrovc/SpelunkyCommunityUpdateProject/77b5ee039ffaeb6b823af991005db65dc6e9faba/static_resources/supersound.dll --------------------------------------------------------------------------------