├── .gitignore ├── Assets ├── Database │ └── Items │ │ └── Material │ │ └── RareDiamonda.tres ├── Fonts │ ├── Font.tres │ ├── Mega Man 10.ttf │ ├── Minecraftia-Regular.ttf │ ├── PressStart2P.ttf │ ├── dlxfont.ttf │ ├── font.ttf │ ├── kongtext.ttf │ ├── manaspc.ttf │ └── pcsenior.ttf ├── Shader │ └── Blur │ │ ├── BlurShader.shader │ │ └── BlurShaderMaterial.tres ├── Sounds │ ├── Bgm │ │ ├── 0-boss.ogg │ │ ├── 0-boss.ogg.import │ │ ├── BBLIR.ogg │ │ ├── BBLIR.ogg.import │ │ ├── BeatBoss.wav │ │ ├── BeatBoss.wav.import │ │ ├── ChaosWorld_Battle.ogg │ │ ├── ChaosWorld_Battle.ogg.import │ │ ├── ClickyNoiseLoopTest.ogg │ │ ├── ClickyNoiseLoopTest.ogg.import │ │ ├── It_Is_MMC5_NOT_ACTUALLY_MM6.ogg │ │ ├── It_Is_MMC5_NOT_ACTUALLY_MM6.ogg.import │ │ ├── ShatterHand_Area3_JP.ogg │ │ ├── ShatterHand_Area3_JP.ogg.import │ │ ├── ShatterHand_Area4.ogg │ │ ├── ShatterHand_Area4.ogg.import │ │ ├── eLvlMain_Rbade.ogg │ │ └── eLvlMain_Rbade.ogg.import │ └── Sfx │ │ ├── Character │ │ ├── Collapse5.wav │ │ ├── Collapse5.wav.import │ │ ├── Collapse6.wav │ │ ├── Collapse6.wav.import │ │ ├── Damage4.wav │ │ ├── Damage4.wav.import │ │ ├── Damage5.wav │ │ ├── Damage5.wav.import │ │ ├── Landing.wav │ │ ├── Landing.wav.import │ │ ├── TeleportIn.wav │ │ ├── TeleportIn.wav.import │ │ ├── TeleportOut.wav │ │ └── TeleportOut.wav.import │ │ ├── Collectibles │ │ ├── Coin.wav │ │ ├── Coin.wav.import │ │ ├── Diamond.wav │ │ ├── Diamond.wav.import │ │ ├── Item.wav │ │ └── Item.wav.import │ │ ├── Combat │ │ ├── BalladeCrackerBomb.wav │ │ ├── BalladeCrackerBomb.wav.import │ │ ├── Boulder.wav │ │ ├── Boulder.wav.import │ │ ├── Buster.wav │ │ ├── Buster.wav.import │ │ ├── BusterCharging.wav │ │ ├── BusterCharging.wav.import │ │ ├── BusterFullyCharged.wav │ │ ├── BusterFullyCharged.wav.import │ │ ├── BusterMiniCharged.wav │ │ ├── BusterMiniCharged.wav.import │ │ ├── Countbomb.wav │ │ ├── Countbomb.wav.import │ │ ├── DiarnSPShot.wav │ │ ├── DiarnSPShot.wav.import │ │ ├── Explosion.wav │ │ ├── Explosion.wav.import │ │ ├── ExplosionMM3.wav │ │ ├── ExplosionMM3.wav.import │ │ ├── Generelea.wav │ │ ├── Generelea.wav.import │ │ ├── MM10_BluesCharge.wav │ │ ├── MM10_BluesCharge.wav.import │ │ ├── MM10_BluesShot.wav │ │ ├── MM10_BluesShot.wav.import │ │ ├── MM10_Fireball.wav │ │ ├── MM10_Fireball.wav.import │ │ ├── MM10_WheelCutter.wav │ │ ├── MM10_WheelCutter.wav.import │ │ ├── MM10_WheelCutterWall.wav │ │ ├── MM10_WheelCutterWall.wav.import │ │ ├── MM1_IceSlasher.wav │ │ ├── MM1_IceSlasher.wav.import │ │ ├── MM6_FlameBurst.wav │ │ ├── MM6_FlameBurst.wav.import │ │ ├── MM6_FreezeFlood.wav │ │ ├── MM6_FreezeFlood.wav.import │ │ ├── MM6_IceBreak.wav │ │ ├── MM6_IceBreak.wav.import │ │ ├── MM6_IceMake.wav │ │ ├── MM6_IceMake.wav.import │ │ ├── PowerFall.wav │ │ ├── PowerFall.wav.import │ │ ├── PowerLanding.wav │ │ ├── PowerLanding.wav.import │ │ ├── PowerLaunch.wav │ │ ├── PowerLaunch.wav.import │ │ ├── Reflect1.wav │ │ ├── Reflect1.wav.import │ │ ├── Shot.wav │ │ ├── Shot.wav.import │ │ ├── Undertale_Encounter.wav │ │ └── Undertale_Encounter.wav.import │ │ ├── Environments │ │ ├── BossDoor.wav │ │ ├── BossDoor.wav.import │ │ ├── ChaosWorld_PlatformExplode.wav │ │ ├── ChaosWorld_PlatformExplode.wav.import │ │ ├── ChaosWorld_PlatformFall.wav │ │ ├── ChaosWorld_PlatformFall.wav.import │ │ ├── Coin_Landing.wav │ │ ├── Coin_Landing.wav.import │ │ ├── Diamond_Landing.wav │ │ ├── Diamond_Landing.wav.import │ │ ├── DonDokoDon_PlatformScramble.wav │ │ ├── DonDokoDon_PlatformScramble.wav.import │ │ ├── EnterDoor.wav │ │ ├── EnterDoor.wav.import │ │ ├── Fan.wav │ │ └── Fan.wav.import │ │ ├── Landing.wav.import │ │ ├── UI │ │ ├── BossFillHp.wav │ │ ├── BossFillHp.wav.import │ │ ├── GameStart.wav │ │ ├── GameStart.wav.import │ │ ├── Level_Up.wav │ │ ├── Level_Up.wav.import │ │ ├── OneUp.wav │ │ └── OneUp.wav.import │ │ └── Uncategorized │ │ ├── MAGMML2_SeriousDamage.wav │ │ └── MAGMML2_SeriousDamage.wav.import ├── Sprites │ ├── Background │ │ ├── MM7FreezeBg.png │ │ ├── MM7FreezeBg.png.import │ │ ├── MM7FreezeBgAlt.png │ │ ├── MM7FreezeBgAlt.png.import │ │ ├── MM7FreezeBgAlt2.png │ │ └── MM7FreezeBgAlt2.png.import │ ├── Characters │ │ ├── Blade_Man.png │ │ ├── Blade_Man.png.import │ │ ├── Charge_Man.png │ │ ├── Charge_Man.png.import │ │ ├── Crash_man.png │ │ ├── Crash_man.png.import │ │ ├── Cream.png │ │ ├── Cream.png.import │ │ ├── Darkwing_Duck.png │ │ ├── Darkwing_Duck.png.import │ │ ├── Grime_Man.png │ │ ├── Grime_Man.png.import │ │ ├── Katyusha.png │ │ ├── Katyusha.png.import │ │ ├── Kirby.png │ │ ├── Kirby.png.import │ │ ├── Lance.png │ │ ├── Lance.png.import │ │ ├── Lip.png │ │ ├── Lip.png.import │ │ ├── Magnet_Man.png │ │ ├── Magnet_Man.png.import │ │ ├── MegaMan.png │ │ ├── MegaMan.png.import │ │ ├── Mega_Met.png │ │ ├── Mega_Met.png.import │ │ ├── Metal_man.png │ │ ├── Metal_man.png.import │ │ ├── Pachy.png │ │ ├── Pachy.png.import │ │ ├── Quick_Man.png │ │ ├── Quick_Man.png.import │ │ ├── Reimu_B.png │ │ ├── Reimu_B.png.import │ │ ├── Rokko_Chan.png │ │ ├── Rokko_Chan.png.import │ │ ├── Sheep_Man.png │ │ ├── Sheep_Man.png.import │ │ ├── Toad_Man.png │ │ ├── Toad_Man.png.import │ │ ├── V.png │ │ ├── V.png.import │ │ ├── Zero.png │ │ └── Zero.png.import │ ├── ClassicThemeV2 │ │ ├── AnimatedButtonPanelFocus.tres │ │ ├── ButtonPanel.png │ │ ├── ButtonPanel.png.import │ │ ├── ButtonPanelDisabled.png │ │ ├── ButtonPanelDisabled.png.import │ │ ├── ButtonPanelFocus.png │ │ ├── ButtonPanelFocus.png.import │ │ ├── ButtonPanelFocus2.png │ │ ├── ButtonPanelFocus2.png.import │ │ ├── ButtonPanelFocus3.png │ │ ├── ButtonPanelFocus3.png.import │ │ ├── ButtonPanelFocus4.png │ │ ├── ButtonPanelFocus4.png.import │ │ ├── ButtonPanelFocus5.png │ │ ├── ButtonPanelFocus5.png.import │ │ ├── ButtonPanelHover.png │ │ ├── ButtonPanelHover.png.import │ │ ├── ButtonPanelPressed.png │ │ ├── ButtonPanelPressed.png.import │ │ ├── CheckButtonOff.png │ │ ├── CheckButtonOff.png.import │ │ ├── CheckButtonOn.png │ │ ├── CheckButtonOn.png.import │ │ ├── CheckedIcon.png │ │ ├── CheckedIcon.png.import │ │ ├── GrabberArea.png │ │ ├── GrabberArea.png.import │ │ ├── GrabberHIcon.png │ │ ├── GrabberHIcon.png.import │ │ ├── GrabberHIconDisabled.png │ │ ├── GrabberHIconDisabled.png.import │ │ ├── GrabberHIconHighlight.png │ │ ├── GrabberHIconHighlight.png.import │ │ ├── GrabberVIcon.png │ │ ├── GrabberVIcon.png.import │ │ ├── GrabberVIconDisabled.png │ │ ├── GrabberVIconDisabled.png.import │ │ ├── GrabberVIconHighlight.png │ │ ├── GrabberVIconHighlight.png.import │ │ ├── H_V_Seperator.png │ │ ├── H_V_Seperator.png.import │ │ ├── PanelBg.png │ │ ├── PanelBg.png.import │ │ ├── RadioCheckedIcon.png │ │ ├── RadioCheckedIcon.png.import │ │ ├── RadioUncheckedIcon.png │ │ ├── RadioUncheckedIcon.png.import │ │ ├── ScrollBg.png │ │ ├── ScrollBg.png.import │ │ ├── SpinBoxUpdownIcon.png │ │ ├── SpinBoxUpdownIcon.png.import │ │ ├── UncheckedIcon.png │ │ └── UncheckedIcon.png.import │ ├── Collectibles │ │ ├── Coin │ │ │ ├── AnimatedTexture_Coin.tres │ │ │ ├── Coin1.png │ │ │ ├── Coin1.png.import │ │ │ ├── Coin2.png │ │ │ ├── Coin2.png.import │ │ │ ├── Coin3.png │ │ │ ├── Coin3.png.import │ │ │ ├── Coin4.png │ │ │ ├── Coin4.png.import │ │ │ ├── Coin5.png │ │ │ ├── Coin5.png.import │ │ │ ├── Coin6.png │ │ │ └── Coin6.png.import │ │ ├── Diamond │ │ │ ├── AnimatedTexture_Diamond.tres │ │ │ ├── Diamond.png │ │ │ ├── Diamond.png.import │ │ │ ├── Diamond1.png │ │ │ ├── Diamond1.png.import │ │ │ ├── Diamond2.png │ │ │ ├── Diamond2.png.import │ │ │ ├── Diamond3.png │ │ │ ├── Diamond3.png.import │ │ │ ├── Diamond4.png │ │ │ ├── Diamond4.png.import │ │ │ ├── Diamond5.png │ │ │ ├── Diamond5.png.import │ │ │ ├── Diamond_Tiny.png │ │ │ └── Diamond_Tiny.png.import │ │ └── Pickups │ │ │ ├── Pickups.png │ │ │ └── Pickups.png.import │ ├── Effects │ │ ├── 100Watton_Smoke_Effect.png │ │ ├── 100Watton_Smoke_Effect.png.import │ │ ├── CoinLandEffect.png │ │ ├── CoinLandEffect.png.import │ │ ├── CoinSparkling.png │ │ ├── CoinSparkling.png.import │ │ ├── Damage.png │ │ ├── Damage.png.import │ │ ├── Explosion.png │ │ ├── Explosion.png.import │ │ ├── Firework_Effect.png │ │ ├── Firework_Effect.png.import │ │ ├── FreezeProjectiles.png │ │ ├── FreezeProjectiles.png.import │ │ ├── Glitch8x2.png │ │ ├── Glitch8x2.png.import │ │ ├── Glitch8x2_1.png │ │ ├── Glitch8x2_1.png.import │ │ ├── Glitch8x2_2.png │ │ ├── Glitch8x2_2.png.import │ │ ├── Glitch8x2_3.png │ │ ├── Glitch8x2_3.png.import │ │ ├── Glitch8x2_4.png │ │ ├── Glitch8x2_4.png.import │ │ ├── Glitch8x2_5.png │ │ ├── Glitch8x2_5.png.import │ │ ├── Glitch8x2_6.png │ │ ├── Glitch8x2_6.png.import │ │ ├── Glitch8x2_7.png │ │ ├── Glitch8x2_7.png.import │ │ ├── Glitch8x2_8.png │ │ ├── Glitch8x2_8.png.import │ │ ├── Glitch8x2animated.tres │ │ ├── IceCrackEffect.png │ │ ├── IceCrackEffect.png.import │ │ ├── LargeExplosion.png │ │ ├── LargeExplosion.png.import │ │ ├── SlideDust.png │ │ ├── SlideDust.png.import │ │ ├── SmallExplosion.png │ │ ├── SmallExplosion.png.import │ │ ├── SmallExplosionUnmodable.png │ │ ├── SmallExplosionUnmodable.png.import │ │ ├── Thiun.png │ │ ├── Thiun.png.import │ │ ├── Vulnerable.png │ │ └── Vulnerable.png.import │ ├── Enemies │ │ ├── Adv3_Batton.png │ │ ├── Adv3_Batton.png.import │ │ ├── Adv3_Boulder.png │ │ ├── Adv3_Boulder.png.import │ │ ├── Adv3_Bullet.png │ │ ├── Adv3_Bullet.png.import │ │ ├── Adv3_Egg.png │ │ ├── Adv3_Egg.png.import │ │ ├── Adv3_LargeFieryBall.png │ │ ├── Adv3_LargeFieryBall.png.import │ │ ├── Adv3_Lobster.png │ │ ├── Adv3_Lobster.png.import │ │ ├── Adv3_Miniboss_FieryLizard.png │ │ ├── Adv3_Miniboss_FieryLizard.png.import │ │ ├── Adv3_Podoboo.png │ │ ├── Adv3_Podoboo.png.import │ │ ├── Adv3_Skull.png │ │ ├── Adv3_Skull.png.import │ │ ├── Adv3_SpikePlatform.png │ │ ├── Adv3_SpikePlatform.png.import │ │ ├── Adv3_TaylorFire.png │ │ ├── Adv3_TaylorFire.png.import │ │ ├── Enemy_TestBullet.png │ │ ├── Enemy_TestBullet.png.import │ │ ├── Hammer.png │ │ ├── Hammer.png.import │ │ ├── MM10_BalladeCracker.png │ │ ├── MM10_BalladeCracker.png.import │ │ ├── MM4_CrystalJoe.png │ │ ├── MM4_CrystalJoe.png.import │ │ ├── MM5_MetallK1000.png │ │ ├── MM5_MetallK1000.png.import │ │ ├── MM6_Colton.png │ │ ├── MM6_Colton.png.import │ │ ├── MM6_ColtonBullet.png │ │ ├── MM6_ColtonBullet.png.import │ │ ├── MM6_FanUp.png │ │ ├── MM6_FanUp.png.import │ │ ├── MM6_PowerSlam.png │ │ ├── MM6_PowerSlam.png.import │ │ ├── MM7_FreezeShockWave.png │ │ ├── MM7_FreezeShockWave.png.import │ │ ├── MM7_Icicle.png │ │ ├── MM7_Icicle.png.import │ │ ├── MM7_freezeman.png │ │ ├── MM7_freezeman.png.import │ │ ├── MM9_DiarnSP.png │ │ ├── MM9_DiarnSP.png.import │ │ ├── MM9machinegunjoe.png │ │ ├── MM9machinegunjoe.png.import │ │ ├── MM_Metall.png │ │ ├── MM_Metall.png.import │ │ ├── Mm3junkblocksprite.png │ │ ├── Mm3junkblocksprite.png.import │ │ ├── Mm4Dompan.png │ │ ├── Mm4Dompan.png.import │ │ ├── Mm4_100watton.png │ │ ├── Mm4_100watton.png.import │ │ ├── Mm4_100wattonBullet.png │ │ ├── Mm4_100wattonBullet.png.import │ │ ├── Mm4_100wattonPot.png │ │ ├── Mm4_100wattonPot.png.import │ │ ├── Mm4shieldattackersprite.png │ │ ├── Mm4shieldattackersprite.png.import │ │ ├── Mm6countbomb.png │ │ └── Mm6countbomb.png.import │ ├── GUI │ │ ├── Icons │ │ │ ├── ExpIcon.png │ │ │ ├── ExpIcon.png.import │ │ │ ├── Heart.png │ │ │ ├── Heart.png.import │ │ │ ├── MiniMega.png │ │ │ ├── MiniMega.png.import │ │ │ ├── SkullIcon.png │ │ │ └── SkullIcon.png.import │ │ ├── NinePatch │ │ │ ├── NineBgPanel_Basic.png │ │ │ ├── NineBgPanel_Basic.png.import │ │ │ ├── NineBgPanel_Blue.png │ │ │ ├── NineBgPanel_Blue.png.import │ │ │ ├── NineBgPanel_Danger.png │ │ │ ├── NineBgPanel_Danger.png.import │ │ │ ├── NineBgPanel_Orange.png │ │ │ ├── NineBgPanel_Orange.png.import │ │ │ ├── NineBgPanel_Pink.png │ │ │ ├── NineBgPanel_Pink.png.import │ │ │ ├── NineBgPanel_Purple.png │ │ │ ├── NineBgPanel_Purple.png.import │ │ │ ├── NineBgPanel_Success.png │ │ │ ├── NineBgPanel_Success.png.import │ │ │ ├── NinePatchPanel_Basic.png │ │ │ ├── NinePatchPanel_Basic.png.import │ │ │ ├── NinePatchPanel_Basic_Disabled.png │ │ │ ├── NinePatchPanel_Basic_Disabled.png.import │ │ │ ├── NinePatchPanel_Basic_Pressed.png │ │ │ ├── NinePatchPanel_Basic_Pressed.png.import │ │ │ ├── NinePatchPanel_Blue.png │ │ │ ├── NinePatchPanel_Blue.png.import │ │ │ ├── NinePatchPanel_Blue_Disabled.png │ │ │ ├── NinePatchPanel_Blue_Disabled.png.import │ │ │ ├── NinePatchPanel_Blue_Pressed.png │ │ │ ├── NinePatchPanel_Blue_Pressed.png.import │ │ │ ├── NinePatchPanel_Danger.png │ │ │ ├── NinePatchPanel_Danger.png.import │ │ │ ├── NinePatchPanel_Danger_Disabled.png │ │ │ ├── NinePatchPanel_Danger_Disabled.png.import │ │ │ ├── NinePatchPanel_Danger_Pressed.png │ │ │ ├── NinePatchPanel_Danger_Pressed.png.import │ │ │ ├── NinePatchPanel_Orange.png │ │ │ ├── NinePatchPanel_Orange.png.import │ │ │ ├── NinePatchPanel_Orange_Disabled.png │ │ │ ├── NinePatchPanel_Orange_Disabled.png.import │ │ │ ├── NinePatchPanel_Orange_Pressed.png │ │ │ ├── NinePatchPanel_Orange_Pressed.png.import │ │ │ ├── NinePatchPanel_Pink.png │ │ │ ├── NinePatchPanel_Pink.png.import │ │ │ ├── NinePatchPanel_Pink_Disabled.png │ │ │ ├── NinePatchPanel_Pink_Disabled.png.import │ │ │ ├── NinePatchPanel_Pink_Pressed.png │ │ │ ├── NinePatchPanel_Pink_Pressed.png.import │ │ │ ├── NinePatchPanel_Purple.png │ │ │ ├── NinePatchPanel_Purple.png.import │ │ │ ├── NinePatchPanel_Purple_Disabled.png │ │ │ ├── NinePatchPanel_Purple_Disabled.png.import │ │ │ ├── NinePatchPanel_Purple_Pressed.png │ │ │ ├── NinePatchPanel_Purple_Pressed.png.import │ │ │ ├── NinePatchPanel_Success.png │ │ │ ├── NinePatchPanel_Success.png.import │ │ │ ├── NinePatchPanel_Success_Disabled.png │ │ │ ├── NinePatchPanel_Success_Disabled.png.import │ │ │ ├── NinePatchPanel_Success_Pressed.png │ │ │ ├── NinePatchPanel_Success_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Basic_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Basic_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Basic_Pressed.png │ │ │ ├── NinePatchPanel_ZInner_Basic_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Blue_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Blue_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Blue_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Blue_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Blue_Pressed.png │ │ │ ├── NinePatchPanel_ZInner_Blue_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Danger_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Danger_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Danger_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Danger_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Danger_Pressed.png │ │ │ ├── NinePatchPanel_ZInner_Danger_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Orange_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Orange_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Orange_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Orange_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Orange_Pressed.png │ │ │ ├── NinePatchPanel_ZInner_Orange_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Pink_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Pink_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Pink_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Pink_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Pink_Pressed.png │ │ │ ├── NinePatchPanel_ZInner_Pink_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Purple_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Purple_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Purple_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Purple_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Purple_Pressed.png │ │ │ ├── NinePatchPanel_ZInner_Purple_Pressed.png.import │ │ │ ├── NinePatchPanel_ZInner_Success_Basic.png │ │ │ ├── NinePatchPanel_ZInner_Success_Basic.png.import │ │ │ ├── NinePatchPanel_ZInner_Success_Disabled.png │ │ │ ├── NinePatchPanel_ZInner_Success_Disabled.png.import │ │ │ ├── NinePatchPanel_ZInner_Success_Pressed.png │ │ │ └── NinePatchPanel_ZInner_Success_Pressed.png.import │ │ ├── ParallaxSword.png │ │ ├── ParallaxSword.png.import │ │ ├── Progress.png │ │ ├── Progress.png.import │ │ ├── ProgressUnder.png │ │ ├── ProgressUnder.png.import │ │ ├── Progress_Blue.png │ │ ├── Progress_Blue.png.import │ │ ├── Progress_BlueDark.png │ │ ├── Progress_BlueDark.png.import │ │ ├── Progress_Green.png │ │ ├── Progress_Green.png.import │ │ ├── Progress_Purple.png │ │ ├── Progress_Purple.png.import │ │ ├── Progress_Secondary.png │ │ ├── Progress_Secondary.png.import │ │ ├── TapToEnter.png │ │ └── TapToEnter.png.import │ ├── Icons │ │ ├── Icon_1024.png │ │ ├── Icon_1024.png.import │ │ ├── Icon_128.png │ │ ├── Icon_128.png.import │ │ ├── Icon_256.png │ │ ├── Icon_256.png.import │ │ ├── Icon_512.png │ │ ├── Icon_512.png.import │ │ ├── Icon_64.png │ │ └── Icon_64.png.import │ ├── Miscellaneous │ │ ├── BossDoor.png │ │ ├── BossDoor.png.import │ │ ├── ConveyorBelt1.png │ │ ├── ConveyorBelt1.png.import │ │ ├── ConveyorBelt2.png │ │ ├── ConveyorBelt2.png.import │ │ ├── ConveyorBelt3.png │ │ ├── ConveyorBelt3.png.import │ │ ├── ConveyorBelt4.png │ │ ├── ConveyorBelt4.png.import │ │ ├── MovingPlatformGrass.png │ │ ├── MovingPlatformGrass.png.import │ │ ├── Null.png │ │ ├── Null.png.import │ │ ├── Teleporter.png │ │ ├── Teleporter.png.import │ │ └── animtexture_conveyorbelt.tres │ ├── Projectiles │ │ ├── ChargedMegaBuster1.png │ │ ├── ChargedMegaBuster1.png.import │ │ ├── ChargedMegaBuster2.png │ │ ├── ChargedMegaBuster2.png.import │ │ ├── MM10_WheelCutter.png │ │ ├── MM10_WheelCutter.png.import │ │ ├── MM4_ChargeShot.png │ │ ├── MM4_ChargeShot.png.import │ │ ├── MM6_FlameBurstHorizontal.png │ │ ├── MM6_FlameBurstHorizontal.png.import │ │ ├── MM6_FlameBurstVertical.png │ │ ├── MM6_FlameBurstVertical.png.import │ │ ├── MegaBusterProjectile.png │ │ ├── MegaBusterProjectile.png.import │ │ ├── MultiPurposeProjectile.png │ │ ├── MultiPurposeProjectile.png.import │ │ ├── PlayerClassicProjectile.png │ │ └── PlayerClassicProjectile.png.import │ ├── SplashScreen │ │ ├── Splash.png │ │ ├── Splash.png.import │ │ ├── SplashBlack.png │ │ └── SplashBlack.png.import │ └── TilesetImages │ │ ├── Adv3_BottomlessPit_AnimatedLava.tres │ │ ├── Adv3_BottomlessPit_Lava1.png │ │ ├── Adv3_BottomlessPit_Lava1.png.import │ │ ├── Adv3_BottomlessPit_Lava2.png │ │ ├── Adv3_BottomlessPit_Lava2.png.import │ │ ├── Adv3_BottomlessPit_Lava3.png │ │ ├── Adv3_BottomlessPit_Lava3.png.import │ │ ├── Adv3_BottomlessPit_Tiles.png │ │ ├── Adv3_BottomlessPit_Tiles.png.import │ │ ├── GrasslandTiles.png │ │ └── GrasslandTiles.png.import ├── Theme │ ├── ClassicThemeV2 │ │ └── ClassicTheme_V2.tres │ ├── Theme_BasicButton.tres │ ├── Theme_BlueButton.tres │ ├── Theme_DangerButton.tres │ ├── Theme_OrangeButton.tres │ ├── Theme_PinkButton.tres │ ├── Theme_PurpleButton.tres │ ├── Theme_ScrollContainer.tres │ ├── Theme_SuccessButton.tres │ ├── Theme_ZInner_BasicButton.tres │ ├── Theme_ZInner_BlueButton.tres │ ├── Theme_ZInner_DangerButton.tres │ ├── Theme_ZInner_OrangeButton.tres │ ├── Theme_ZInner_PinkButton.tres │ ├── Theme_ZInner_PurpleButton.tres │ └── Theme_ZInner_SuccessButton.tres └── Tilesets │ ├── BottomlessPitTileset.tres │ └── GrasslandTileset.tres ├── Camera ├── Camera.gd └── Camera2D.tscn ├── DEV_ExampleUsages ├── Ex_AutoQueueFree │ ├── Ex_AutoQueueFree_1.tscn │ ├── Ex_AutoQueueFree_2.tscn │ ├── Ex_AutoQueueFree_3.tscn │ └── Ex_AutoQueueFree_4.tscn ├── Ex_ChainTileDestroyer │ ├── Ex_ChainTileDestroyer_1.tscn │ ├── Ex_ChainTileDestroyer_2.tscn │ ├── Ex_ChainTileDestroyer_3.tscn │ ├── Ex_ChainTileDestroyer_4.tscn │ └── ExplainationText.tscn ├── Ex_CharacterTemplate │ ├── Ex_SpriteSheet.png │ └── Ex_SpriteSheet.png.import ├── Ex_CheckPoint │ └── Ex_CheckPoint_1.tscn ├── Ex_Iterator │ ├── Ex_Iterator_1.tscn │ ├── Ex_Iterator_2.tscn │ └── Ex_Iterator_3.tscn ├── Ex_NESColorPalette │ ├── Ex_NESColorPalette.tscn │ └── Palette.gd ├── Ex_SineBehavior │ ├── Ex_SineBehavior.tscn │ ├── Ex_SineBehavior_2.tscn │ ├── Ex_SineBehavior_3.tscn │ ├── Ex_SineBehavior_4.tscn │ └── Ex_SineBehavior_5.tscn └── Ex_Teleporter │ └── Ex_Teleporter_1.tscn ├── DatabaseCore ├── Character (Unused) │ └── Core │ │ ├── Character.gd │ │ ├── Character.tscn │ │ ├── CharacterGeneral.gd │ │ ├── CharacterInitialEquipment.gd │ │ └── CharacterPersonal.gd ├── CharacterData │ ├── BladeMan.tres │ ├── ChargeMan.tres │ ├── Core │ │ └── CharacterData.gd │ ├── CrashMan.tres │ ├── Cream.tres │ ├── DarkwingDuck.tres │ ├── GrimeMan.tres │ ├── Katyusha.tres │ ├── Kirby.tres │ ├── Lance.tres │ ├── Lip.tres │ ├── MagnetMan.tres │ ├── MegaMan.tres │ ├── MegaMet.tres │ ├── MetalMan.tres │ ├── Patchouli.tres │ ├── QuickMan.tres │ ├── Reimu.tres │ ├── RokkoChan.tres │ ├── SheepMan.tres │ ├── ToadMan.tres │ ├── V.tres │ └── Zero.tres ├── Classes (Unused) │ ├── Core │ │ ├── Class.gd │ │ ├── Class.tscn │ │ ├── ClassGeneral.gd │ │ ├── ClassParameterCurves.gd │ │ └── ClassSkillsToLearn.gd │ └── Res │ │ └── SkillsToLearnPack.gd ├── Items │ ├── Core │ │ └── ItemData.gd │ └── Res │ │ ├── ItemConsumable.gd │ │ ├── ItemCore.gd │ │ ├── ItemEquipable.gd │ │ ├── ItemEquipableAccessories.gd │ │ ├── ItemEquipableCloth.gd │ │ ├── ItemEquipableFeet.gd │ │ ├── ItemEquipableHead.gd │ │ ├── ItemEquipableWeapon.gd │ │ ├── ItemKeyItem.gd │ │ └── ItemMaterial.gd ├── Skills (Unused) │ └── Core │ │ ├── Skill.gd │ │ ├── Skill.tscn │ │ ├── SkillDamage.gd │ │ ├── SkillGeneral.gd │ │ └── SkillsInvocation.gd └── Utils │ ├── Enumerations │ ├── DamageType.gd │ ├── Gender.gd │ └── ItemCooldownGroup.gd │ └── GameplayConstants │ └── Character.gd ├── Debug └── RectHelper │ ├── RectHelper.gd │ └── RectHelper.tscn ├── Entities ├── BlockChainDestroyer │ ├── AreaChainDestroyer.gd │ ├── AreaChainDestroyer.tscn │ ├── ChainDestroyController.gd │ └── ChainDestroyController.tscn ├── CheckpointZone │ ├── CheckpointZone.gd │ └── CheckpointZone.tscn ├── Coin │ ├── Coin1.gd │ ├── Coin1.tscn │ ├── CoinCore.gd │ ├── CoinCore.tscn │ ├── Diamond1.tscn │ └── Item.tscn ├── ConveyorBelt │ ├── CBFastLeft.tscn │ ├── CBFastRight.tscn │ ├── CBMidLeft.tscn │ ├── CBMidRight.tscn │ ├── CBSlowLeft.tscn │ ├── CBSlowRight.tscn │ ├── ConveyorBelt.gd │ └── ConveyorBelt.tscn ├── DeathSpike │ ├── DeathSpike.gd │ └── DeathSpike.tscn ├── Effects │ ├── 100WattonSmokeEffect │ │ └── 100WattonSmokeEffect.tscn │ ├── AddCoinCounter │ │ ├── CoinCounter1.gd │ │ ├── CoinCounter1.tscn │ │ └── DiamondCounter1.tscn │ ├── CoinLandEffect │ │ ├── CoinLandEffect.gd │ │ └── CoinLandEffect.tscn │ ├── CoinSparklingEffect │ │ └── CoinSparklingEffect.tscn │ ├── Explosion │ │ ├── Explosion.gd │ │ └── Explosion.tscn │ ├── FireworkEffect │ │ ├── FireworkEffect.gd │ │ └── FireworkEffect.tscn │ ├── FlashScreenEffect │ │ └── FlashScreenEffect.tscn │ ├── IceCrackEffect │ │ ├── IceCrackEffect.gd │ │ └── IceShardEffect.tscn │ ├── LargeExplosion │ │ └── LargeExplosion.tscn │ ├── MM_Thiun │ │ ├── Thiun.gd │ │ ├── Thiun.tscn │ │ ├── ThiunEffectCreator.gd │ │ └── ThiunEffectCreator.tscn │ ├── Particles │ │ ├── CoinParticles.tscn │ │ ├── ExplosionParticles.tscn │ │ ├── FireParticles.tscn │ │ ├── FireballParticle.tscn │ │ ├── MagicFieldParticles.tscn │ │ └── ParticlesMaterial_Explosion.tres │ ├── SlideDust │ │ └── SlideDust.tscn │ ├── SmallExplosion │ │ └── SmallExplosion.tscn │ └── VulnerableEffect │ │ └── VulnerableEffect.tscn ├── Enemy │ ├── Core │ │ ├── BossCore.gd │ │ ├── BossCore.tscn │ │ ├── EnemyCore.gd │ │ ├── EnemyCore.tscn │ │ ├── EnemyProjectileCore.gd │ │ └── EnemyProjectileCore.tscn │ ├── NonEnemyObj │ │ ├── CameraBottomScrollerUp.gd │ │ └── CameraBottomScrollerUp.tscn │ └── Obj │ │ ├── Adv3_Basser.tscn │ │ ├── Adv3_BasserAtk.gd │ │ ├── Adv3_BasserAtk.tscn │ │ ├── Adv3_BasserMove.gd │ │ ├── Adv3_BasserMove.tscn │ │ ├── Adv3_BasserStatic.tscn │ │ ├── Adv3_Boss_FieryLizard.gd │ │ ├── Adv3_Boss_FieryLizard.tscn │ │ ├── Adv3_Boulder.gd │ │ ├── Adv3_Boulder.tscn │ │ ├── Adv3_Bullet.tscn │ │ ├── Adv3_LargeFieryBall.gd │ │ ├── Adv3_LargeFieryBall.tscn │ │ ├── Adv3_Lobster.gd │ │ ├── Adv3_Lobster.tscn │ │ ├── Adv3_Podoboo.gd │ │ ├── Adv3_Podoboo.tscn │ │ ├── Adv3_Skull.gd │ │ ├── Adv3_Skull.tscn │ │ ├── Adv3_SpikePlatform.tscn │ │ ├── Adv3_SpikePlatformFall.gd │ │ ├── Adv3_SpikePlatformFall.tscn │ │ ├── Adv3_SpikePlatformUpdown.gd │ │ ├── Adv3_SpikePlatformUpdown.tscn │ │ ├── IDK_Hammer.gd │ │ ├── IDK_Hammer.tscn │ │ ├── MM10_BalladeCracker.gd │ │ ├── MM10_BalladeCracker.tscn │ │ ├── MM10_BluesChargedShot.tscn │ │ ├── MM10_WheelCutter.gd │ │ ├── MM10_WheelCutter.tscn │ │ ├── MM2_Bullet.tscn │ │ ├── MM3_JunkBlock.gd │ │ ├── MM3_JunkBlock.tscn │ │ ├── MM3_LargeExplosion.gd │ │ ├── MM3_LargeExplosion.tscn │ │ ├── MM4_100Watton.gd │ │ ├── MM4_100Watton.tscn │ │ ├── MM4_100WattonBomb.gd │ │ ├── MM4_100WattonBomb.tscn │ │ ├── MM4_100WattonBullet.tscn │ │ ├── MM4_Dompan.gd │ │ ├── MM4_Dompan.tscn │ │ ├── MM4_Metall.gd │ │ ├── MM4_Metall.tscn │ │ ├── MM4_ShieldAttacker.gd │ │ ├── MM4_ShieldAttacker.tscn │ │ ├── MM5_c_MetallK1999.gd │ │ ├── MM5_c_MetallK1999.tscn │ │ ├── MM5_c_WheelCutterJoe.gd │ │ ├── MM5_c_WheelCutterJoe.tscn │ │ ├── MM6_CountBomb.gd │ │ ├── MM6_CountBomb.tscn │ │ ├── MM6_FlameBurstFireball.gd │ │ ├── MM6_FlameBurstFireball.tscn │ │ ├── MM6_FlameBurstHorizontal.tscn │ │ ├── MM6_FlameBurstVertical.tscn │ │ ├── MM6_ObjFanUp.gd │ │ ├── MM6_ObjFanUp.tscn │ │ ├── MM6_PowerSlam.gd │ │ ├── MM6_PowerSlam.tscn │ │ ├── MM6_c_PoweredColton.gd │ │ ├── MM6_c_PoweredColton.tscn │ │ ├── MM7_FreezeCracker.gd │ │ ├── MM7_FreezeCracker.tscn │ │ ├── MM7_FreezeDebris.tscn │ │ ├── MM7_Icicle.gd │ │ ├── MM7_Icicle.tscn │ │ ├── MM7_c_Boss_FreezeMan.gd │ │ ├── MM7_c_Boss_FreezeMan.tscn │ │ ├── MM9_c_DiarnSP.gd │ │ ├── MM9_c_DiarnSP.tscn │ │ ├── MM9_c_MachineGunJoe.gd │ │ └── MM9_c_MachineGunJoe.tscn ├── Pickups │ ├── Life.gd │ ├── Life.tscn │ ├── LifeEnergyLarge.gd │ ├── LifeEnergyLarge.tscn │ ├── LifeEnergySmall.gd │ ├── LifeEnergySmall.tscn │ ├── PickupsCore.gd │ ├── PickupsCore.tscn │ ├── WeaponEnergyLarge.gd │ ├── WeaponEnergyLarge.tscn │ ├── WeaponEnergySmall.gd │ └── WeaponEnergySmall.tscn ├── Player │ ├── Player.gd │ └── Player.tscn ├── PlayerAreaNotifier │ ├── PlayerAreaNotifier.gd │ └── PlayerAreaNotifier.tscn ├── PlayerProjectile │ ├── PlayerProjectileCore.gd │ ├── PlayerProjectileCore.tscn │ ├── PlayerProjectile_ChargedMegaBuster1.tscn │ ├── PlayerProjectile_ChargedMegaBuster2.gd │ ├── PlayerProjectile_ChargedMegaBuster2.tscn │ ├── PlayerProjectile_ClassicBullet.tscn │ └── PlayerProjectile_MegaBuster.tscn ├── ProjectileReflector │ ├── ProjectileReflector.gd │ └── ProjectileReflector.tscn ├── ScreenTransitor │ ├── BossDoor.gd │ ├── BossDoor.tscn │ ├── ScreenTransitor.gd │ └── ScreenTransitor.tscn ├── Teleporter │ ├── Teleporter.gd │ └── Teleporter.tscn └── WarpZone │ ├── WarpZone.gd │ └── WarpZone.tscn ├── GUI ├── BossHealthBar │ ├── BossHealthBar.gd │ └── BossHealthBar.tscn ├── DamageCounter.gd ├── DamageCounter.tscn ├── FadeScreen │ ├── FadeScreen.gd │ └── FadeScreen.tscn ├── GameGui │ ├── GameGui.gd │ ├── GameGui.tscn │ ├── VitalBar.png │ └── VitalBar.png.import ├── GameHUD │ ├── GameHUD.gd │ ├── GameHUD.tscn │ ├── VitalBar.png │ └── VitalBar.png.import ├── HpBar │ ├── HpBar.gd │ ├── HpBar.tscn │ └── HpBar_ExpExtended.gd ├── HpText │ ├── HpText.gd │ ├── HpText.tscn │ └── HpText_Extended.gd ├── NinePatchPanel │ └── NinePatchRect_Classic.tscn └── ParallaxIconsBg │ ├── IconParallaxer.gd │ └── IconParallaxer.tscn ├── Levels ├── Core │ ├── Level.gd │ └── Lv_Core.tscn ├── Levels │ ├── Adv3_BottomLessPit.tscn │ ├── Adv3_BottomlessPitBossTest.tscn │ ├── Adv3_BottomlessPitYT.tscn │ ├── FromYT_VideoLevel.tscn │ ├── Grassland_1_2OP.tscn │ ├── Grassland_1_2OP_v2.tscn │ └── Sprite.gd └── Views │ ├── View.gd │ ├── View.tscn │ └── ViewContainer.gd ├── Lib ├── FJ_LibHelper │ ├── AnchorBehavior2D │ │ ├── AnchorBehavior2D.gd │ │ └── AnchorBehavior2D.tscn │ ├── AudioManager │ │ ├── AudioManager.gd │ │ └── AudioManager.tscn │ ├── AutoQueueFree │ │ ├── AutoQueueFree.gd │ │ └── AutoQueueFree.tscn │ ├── BulletBehavior2D │ │ ├── BulletBehavior2D.gd │ │ └── BulletBehavior2D.tscn │ ├── ButtonEffect │ │ ├── ButtonEffect.gd │ │ ├── ButtonEffect.tscn │ │ ├── ButtonEffectCreator.gd │ │ └── ButtonEffectCreator.tscn │ ├── ItemTable │ │ ├── ItemSet │ │ │ ├── ItemSet.gd │ │ │ ├── ItemSet.tscn │ │ │ └── ItemSetData │ │ │ │ └── ItemSetData.gd │ │ ├── ItemTable.gd │ │ └── ItemTable.tscn │ ├── PlatformBehavior2D │ │ ├── PlatformBehavior2D.gd │ │ └── PlatformBehavior2D.tscn │ ├── SineBehavior2D │ │ ├── SineBehavior2D.gd │ │ └── SineBehavior2D.tscn │ └── SpriteCycling2D │ │ ├── SpriteCycling2D.gd │ │ └── SpriteCycling2D.tscn ├── FJ_NodeExtensions │ └── ButtonPlus │ │ ├── ButtonPlus.gd │ │ └── ButtonPlus.tscn └── FJ_ResExtensions │ └── CurvePlus │ └── CurvePlus.gd ├── Misc ├── CheckPointManager │ └── CheckpointManager.gd ├── CurrencyManager │ └── CurrencyManager.gd ├── Debug.gd ├── DebugShapeDrawer │ ├── DebugShapeDrawer.gd │ └── DebugShapeDrawer.tscn ├── GameSettings │ ├── Audio.gd │ ├── GameSettings.gd │ ├── GameSettings.tscn │ └── Gameplay.gd ├── GlobalVariables │ ├── GlobalVariables.gd │ └── GlobalVariables.tscn ├── InventoryCore │ └── InventoryManager.gd ├── LevelBrightnessModifier │ ├── LevelBrightness.gd │ ├── LevelBrightnessModifier.gd │ └── LevelBrightnessModifier.tscn ├── Libraries │ ├── InfoClasses │ │ └── DeadEnemyInfo.gd │ └── Utils │ │ ├── BitFlagsComparator │ │ └── BitFlagsComparator.gd │ │ ├── NESColorPalette │ │ └── NESColorPalette.gd │ │ ├── NumberSimplifier │ │ └── NumberSimplifier.gd │ │ └── RectCentralizer │ │ └── RectCentralizer.gd ├── ObjSpawner │ ├── ObjSpawner.gd │ └── ObjSpawner.tscn ├── PaletteSpriteCore │ ├── PaletteSpriteCore.gd │ ├── PaletteSpriteCore.tscn │ └── SpriteColorPaletteData.gd ├── PlatformerSprite │ ├── PlatformerSprite.gd │ └── PlatformerSprite.tscn ├── PlayerStats │ └── PlayerStats.gd └── TileMapGlitchNESStyle │ ├── TileMapGlitch.gd │ └── TileMapGlitch.tscn ├── README.md ├── Splash ├── SplashScreen.gd └── SplashScreen.tscn ├── default_bus_layout.tres └── project.godot /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | export_presets\.cfg 3 | 4 | \.import/ 5 | 6 | -------------------------------------------------------------------------------- /Assets/Database/Items/Material/RareDiamonda.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Database/Items/Material/RareDiamonda.tres -------------------------------------------------------------------------------- /Assets/Fonts/Font.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/Font.tres -------------------------------------------------------------------------------- /Assets/Fonts/Mega Man 10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/Mega Man 10.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Minecraftia-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/Minecraftia-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/PressStart2P.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/PressStart2P.ttf -------------------------------------------------------------------------------- /Assets/Fonts/dlxfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/dlxfont.ttf -------------------------------------------------------------------------------- /Assets/Fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/font.ttf -------------------------------------------------------------------------------- /Assets/Fonts/kongtext.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/kongtext.ttf -------------------------------------------------------------------------------- /Assets/Fonts/manaspc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/manaspc.ttf -------------------------------------------------------------------------------- /Assets/Fonts/pcsenior.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Fonts/pcsenior.ttf -------------------------------------------------------------------------------- /Assets/Shader/Blur/BlurShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Shader/Blur/BlurShader.shader -------------------------------------------------------------------------------- /Assets/Shader/Blur/BlurShaderMaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Shader/Blur/BlurShaderMaterial.tres -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/0-boss.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/0-boss.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/0-boss.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/0-boss.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/BBLIR.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/BBLIR.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/BBLIR.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/BBLIR.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/BeatBoss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/BeatBoss.wav -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/BeatBoss.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/BeatBoss.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ChaosWorld_Battle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ChaosWorld_Battle.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ChaosWorld_Battle.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ChaosWorld_Battle.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ClickyNoiseLoopTest.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ClickyNoiseLoopTest.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ClickyNoiseLoopTest.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ClickyNoiseLoopTest.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/It_Is_MMC5_NOT_ACTUALLY_MM6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/It_Is_MMC5_NOT_ACTUALLY_MM6.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/It_Is_MMC5_NOT_ACTUALLY_MM6.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/It_Is_MMC5_NOT_ACTUALLY_MM6.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ShatterHand_Area3_JP.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ShatterHand_Area3_JP.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ShatterHand_Area3_JP.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ShatterHand_Area3_JP.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ShatterHand_Area4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ShatterHand_Area4.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/ShatterHand_Area4.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/ShatterHand_Area4.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/eLvlMain_Rbade.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/eLvlMain_Rbade.ogg -------------------------------------------------------------------------------- /Assets/Sounds/Bgm/eLvlMain_Rbade.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Bgm/eLvlMain_Rbade.ogg.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Collapse5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Collapse5.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Collapse5.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Collapse5.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Collapse6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Collapse6.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Collapse6.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Collapse6.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Damage4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Damage4.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Damage4.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Damage4.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Damage5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Damage5.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Damage5.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Damage5.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Landing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Landing.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/Landing.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/Landing.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/TeleportIn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/TeleportIn.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/TeleportIn.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/TeleportIn.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/TeleportOut.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/TeleportOut.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Character/TeleportOut.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Character/TeleportOut.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Collectibles/Coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Collectibles/Coin.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Collectibles/Coin.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Collectibles/Coin.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Collectibles/Diamond.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Collectibles/Diamond.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Collectibles/Diamond.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Collectibles/Diamond.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Collectibles/Item.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Collectibles/Item.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Collectibles/Item.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Collectibles/Item.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BalladeCrackerBomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BalladeCrackerBomb.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BalladeCrackerBomb.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BalladeCrackerBomb.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Boulder.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Boulder.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Boulder.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Boulder.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Buster.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Buster.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Buster.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Buster.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BusterCharging.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BusterCharging.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BusterCharging.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BusterCharging.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BusterFullyCharged.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BusterFullyCharged.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BusterFullyCharged.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BusterFullyCharged.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BusterMiniCharged.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BusterMiniCharged.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/BusterMiniCharged.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/BusterMiniCharged.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Countbomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Countbomb.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Countbomb.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Countbomb.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/DiarnSPShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/DiarnSPShot.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/DiarnSPShot.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/DiarnSPShot.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Explosion.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Explosion.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Explosion.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/ExplosionMM3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/ExplosionMM3.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/ExplosionMM3.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/ExplosionMM3.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Generelea.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Generelea.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Generelea.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Generelea.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_BluesCharge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_BluesCharge.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_BluesCharge.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_BluesCharge.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_BluesShot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_BluesShot.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_BluesShot.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_BluesShot.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_Fireball.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_Fireball.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_Fireball.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_Fireball.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_WheelCutter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_WheelCutter.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_WheelCutter.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_WheelCutter.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_WheelCutterWall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_WheelCutterWall.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM10_WheelCutterWall.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM10_WheelCutterWall.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM1_IceSlasher.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM1_IceSlasher.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM1_IceSlasher.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM1_IceSlasher.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_FlameBurst.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_FlameBurst.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_FlameBurst.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_FlameBurst.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_FreezeFlood.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_FreezeFlood.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_FreezeFlood.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_FreezeFlood.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_IceBreak.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_IceBreak.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_IceBreak.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_IceBreak.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_IceMake.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_IceMake.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/MM6_IceMake.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/MM6_IceMake.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/PowerFall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/PowerFall.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/PowerFall.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/PowerFall.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/PowerLanding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/PowerLanding.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/PowerLanding.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/PowerLanding.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/PowerLaunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/PowerLaunch.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/PowerLaunch.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/PowerLaunch.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Reflect1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Reflect1.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Reflect1.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Reflect1.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Shot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Shot.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Shot.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Shot.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Undertale_Encounter.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Undertale_Encounter.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Combat/Undertale_Encounter.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Combat/Undertale_Encounter.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/BossDoor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/BossDoor.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/BossDoor.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/BossDoor.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/ChaosWorld_PlatformFall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/ChaosWorld_PlatformFall.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/Coin_Landing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/Coin_Landing.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/Coin_Landing.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/Coin_Landing.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/Diamond_Landing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/Diamond_Landing.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/Diamond_Landing.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/Diamond_Landing.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/EnterDoor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/EnterDoor.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/EnterDoor.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/EnterDoor.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/Fan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/Fan.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Environments/Fan.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Environments/Fan.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Landing.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Landing.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/BossFillHp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/BossFillHp.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/BossFillHp.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/BossFillHp.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/GameStart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/GameStart.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/GameStart.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/GameStart.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/Level_Up.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/Level_Up.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/Level_Up.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/Level_Up.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/OneUp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/OneUp.wav -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/UI/OneUp.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/UI/OneUp.wav.import -------------------------------------------------------------------------------- /Assets/Sounds/Sfx/Uncategorized/MAGMML2_SeriousDamage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sounds/Sfx/Uncategorized/MAGMML2_SeriousDamage.wav -------------------------------------------------------------------------------- /Assets/Sprites/Background/MM7FreezeBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Background/MM7FreezeBg.png -------------------------------------------------------------------------------- /Assets/Sprites/Background/MM7FreezeBg.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Background/MM7FreezeBg.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Background/MM7FreezeBgAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Background/MM7FreezeBgAlt.png -------------------------------------------------------------------------------- /Assets/Sprites/Background/MM7FreezeBgAlt.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Background/MM7FreezeBgAlt.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Background/MM7FreezeBgAlt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Background/MM7FreezeBgAlt2.png -------------------------------------------------------------------------------- /Assets/Sprites/Background/MM7FreezeBgAlt2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Background/MM7FreezeBgAlt2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Blade_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Blade_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Blade_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Blade_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Charge_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Charge_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Charge_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Charge_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Crash_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Crash_man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Crash_man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Crash_man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Cream.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Cream.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Cream.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Darkwing_Duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Darkwing_Duck.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Darkwing_Duck.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Darkwing_Duck.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Grime_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Grime_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Grime_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Grime_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Katyusha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Katyusha.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Katyusha.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Katyusha.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Kirby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Kirby.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Kirby.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Kirby.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Lance.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Lance.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Lance.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Lip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Lip.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Lip.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Lip.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Magnet_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Magnet_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Magnet_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Magnet_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/MegaMan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/MegaMan.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/MegaMan.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/MegaMan.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Mega_Met.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Mega_Met.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Mega_Met.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Mega_Met.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Metal_man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Metal_man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Metal_man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Metal_man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Pachy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Pachy.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Pachy.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Pachy.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Quick_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Quick_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Quick_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Quick_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Reimu_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Reimu_B.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Reimu_B.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Reimu_B.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Rokko_Chan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Rokko_Chan.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Rokko_Chan.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Rokko_Chan.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Sheep_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Sheep_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Sheep_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Sheep_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Toad_Man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Toad_Man.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Toad_Man.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Toad_Man.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/V.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/V.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/V.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Zero.png -------------------------------------------------------------------------------- /Assets/Sprites/Characters/Zero.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Characters/Zero.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanel.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanel.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanel.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelDisabled.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus2.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus3.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus3.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus4.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelFocus5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelFocus5.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelHover.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ButtonPanelPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ButtonPanelPressed.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/CheckButtonOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/CheckButtonOff.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/CheckButtonOff.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/CheckButtonOff.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/CheckButtonOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/CheckButtonOn.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/CheckButtonOn.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/CheckButtonOn.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/CheckedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/CheckedIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/CheckedIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/CheckedIcon.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberArea.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberArea.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberArea.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberHIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberHIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberHIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberHIcon.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberHIconDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberHIconDisabled.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberHIconHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberHIconHighlight.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberVIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberVIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberVIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberVIcon.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberVIconDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberVIconDisabled.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/GrabberVIconHighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/GrabberVIconHighlight.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/H_V_Seperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/H_V_Seperator.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/H_V_Seperator.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/H_V_Seperator.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/PanelBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/PanelBg.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/PanelBg.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/PanelBg.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/RadioCheckedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/RadioCheckedIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/RadioUncheckedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/RadioUncheckedIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ScrollBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ScrollBg.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/ScrollBg.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/ScrollBg.png.import -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/SpinBoxUpdownIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/SpinBoxUpdownIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/UncheckedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/UncheckedIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/ClassicThemeV2/UncheckedIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/ClassicThemeV2/UncheckedIcon.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin1.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin1.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin2.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin3.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin3.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin4.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin4.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin5.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin5.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin6.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Coin/Coin6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Coin/Coin6.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond1.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond1.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond2.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond3.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond3.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond4.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond4.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond5.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond5.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Diamond/Diamond_Tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Diamond/Diamond_Tiny.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Pickups/Pickups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Pickups/Pickups.png -------------------------------------------------------------------------------- /Assets/Sprites/Collectibles/Pickups/Pickups.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Collectibles/Pickups/Pickups.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/100Watton_Smoke_Effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/100Watton_Smoke_Effect.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/100Watton_Smoke_Effect.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/100Watton_Smoke_Effect.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/CoinLandEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/CoinLandEffect.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/CoinLandEffect.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/CoinLandEffect.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/CoinSparkling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/CoinSparkling.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/CoinSparkling.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/CoinSparkling.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Damage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Damage.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Damage.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Damage.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Explosion.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Explosion.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Explosion.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Firework_Effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Firework_Effect.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Firework_Effect.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Firework_Effect.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/FreezeProjectiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/FreezeProjectiles.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/FreezeProjectiles.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/FreezeProjectiles.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_1.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_1.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_2.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_3.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_3.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_4.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_4.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_5.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_5.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_6.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_6.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_7.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_7.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_7.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_8.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2_8.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2_8.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Glitch8x2animated.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Glitch8x2animated.tres -------------------------------------------------------------------------------- /Assets/Sprites/Effects/IceCrackEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/IceCrackEffect.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/IceCrackEffect.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/IceCrackEffect.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/LargeExplosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/LargeExplosion.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/LargeExplosion.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/LargeExplosion.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/SlideDust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/SlideDust.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/SlideDust.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/SlideDust.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/SmallExplosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/SmallExplosion.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/SmallExplosion.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/SmallExplosion.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/SmallExplosionUnmodable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/SmallExplosionUnmodable.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Thiun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Thiun.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Thiun.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Thiun.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Vulnerable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Vulnerable.png -------------------------------------------------------------------------------- /Assets/Sprites/Effects/Vulnerable.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Effects/Vulnerable.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Batton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Batton.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Batton.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Batton.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Boulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Boulder.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Boulder.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Boulder.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Bullet.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Bullet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Bullet.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Egg.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Egg.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Egg.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_LargeFieryBall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_LargeFieryBall.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_LargeFieryBall.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_LargeFieryBall.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Lobster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Lobster.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Lobster.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Lobster.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Miniboss_FieryLizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Miniboss_FieryLizard.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Podoboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Podoboo.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Podoboo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Podoboo.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Skull.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_Skull.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_Skull.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_SpikePlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_SpikePlatform.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_SpikePlatform.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_SpikePlatform.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_TaylorFire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_TaylorFire.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Adv3_TaylorFire.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Adv3_TaylorFire.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Enemy_TestBullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Enemy_TestBullet.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Enemy_TestBullet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Enemy_TestBullet.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Hammer.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Hammer.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Hammer.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM10_BalladeCracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM10_BalladeCracker.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM10_BalladeCracker.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM10_BalladeCracker.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM4_CrystalJoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM4_CrystalJoe.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM4_CrystalJoe.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM4_CrystalJoe.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM5_MetallK1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM5_MetallK1000.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM5_MetallK1000.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM5_MetallK1000.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_Colton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_Colton.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_Colton.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_Colton.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_ColtonBullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_ColtonBullet.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_ColtonBullet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_ColtonBullet.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_FanUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_FanUp.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_FanUp.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_FanUp.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_PowerSlam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_PowerSlam.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM6_PowerSlam.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM6_PowerSlam.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM7_FreezeShockWave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM7_FreezeShockWave.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM7_FreezeShockWave.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM7_FreezeShockWave.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM7_Icicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM7_Icicle.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM7_Icicle.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM7_Icicle.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM7_freezeman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM7_freezeman.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM7_freezeman.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM7_freezeman.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM9_DiarnSP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM9_DiarnSP.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM9_DiarnSP.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM9_DiarnSP.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM9machinegunjoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM9machinegunjoe.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM9machinegunjoe.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM9machinegunjoe.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM_Metall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM_Metall.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/MM_Metall.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/MM_Metall.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm3junkblocksprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm3junkblocksprite.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm3junkblocksprite.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm3junkblocksprite.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4Dompan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4Dompan.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4Dompan.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4Dompan.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4_100watton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4_100watton.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4_100watton.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4_100watton.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4_100wattonBullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4_100wattonBullet.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4_100wattonBullet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4_100wattonBullet.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4_100wattonPot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4_100wattonPot.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4_100wattonPot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4_100wattonPot.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm4shieldattackersprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm4shieldattackersprite.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm6countbomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm6countbomb.png -------------------------------------------------------------------------------- /Assets/Sprites/Enemies/Mm6countbomb.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Enemies/Mm6countbomb.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/ExpIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/ExpIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/ExpIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/ExpIcon.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/Heart.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/Heart.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/Heart.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/MiniMega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/MiniMega.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/MiniMega.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/MiniMega.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/SkullIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/SkullIcon.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Icons/SkullIcon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Icons/SkullIcon.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Basic.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Blue.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Blue.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Danger.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Orange.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Pink.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Pink.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Pink.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Purple.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NineBgPanel_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NineBgPanel_Success.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Basic.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Blue.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Danger.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Orange.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Pink.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Purple.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/NinePatch/NinePatchPanel_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/NinePatch/NinePatchPanel_Success.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/ParallaxSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/ParallaxSword.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/ParallaxSword.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/ParallaxSword.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/ProgressUnder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/ProgressUnder.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/ProgressUnder.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/ProgressUnder.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Blue.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Blue.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_BlueDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_BlueDark.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_BlueDark.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_BlueDark.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Green.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Green.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Green.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Purple.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Purple.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Purple.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Secondary.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/Progress_Secondary.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/Progress_Secondary.png.import -------------------------------------------------------------------------------- /Assets/Sprites/GUI/TapToEnter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/TapToEnter.png -------------------------------------------------------------------------------- /Assets/Sprites/GUI/TapToEnter.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/GUI/TapToEnter.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_1024.png -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_1024.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_1024.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_128.png -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_128.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_128.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_256.png -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_256.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_256.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_512.png -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_512.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_512.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_64.png -------------------------------------------------------------------------------- /Assets/Sprites/Icons/Icon_64.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Icons/Icon_64.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/BossDoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/BossDoor.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/BossDoor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/BossDoor.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt1.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt1.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt2.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt3.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt3.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt4.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/ConveyorBelt4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/ConveyorBelt4.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/MovingPlatformGrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/MovingPlatformGrass.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/Null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/Null.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/Null.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/Null.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/Teleporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/Teleporter.png -------------------------------------------------------------------------------- /Assets/Sprites/Miscellaneous/Teleporter.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Miscellaneous/Teleporter.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/ChargedMegaBuster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/ChargedMegaBuster1.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/ChargedMegaBuster1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/ChargedMegaBuster1.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/ChargedMegaBuster2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/ChargedMegaBuster2.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/ChargedMegaBuster2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/ChargedMegaBuster2.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MM10_WheelCutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MM10_WheelCutter.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MM10_WheelCutter.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MM10_WheelCutter.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MM4_ChargeShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MM4_ChargeShot.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MM4_ChargeShot.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MM4_ChargeShot.png.import -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MM6_FlameBurstHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MM6_FlameBurstHorizontal.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MM6_FlameBurstVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MM6_FlameBurstVertical.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MegaBusterProjectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MegaBusterProjectile.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/MultiPurposeProjectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/MultiPurposeProjectile.png -------------------------------------------------------------------------------- /Assets/Sprites/Projectiles/PlayerClassicProjectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/Projectiles/PlayerClassicProjectile.png -------------------------------------------------------------------------------- /Assets/Sprites/SplashScreen/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/SplashScreen/Splash.png -------------------------------------------------------------------------------- /Assets/Sprites/SplashScreen/Splash.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/SplashScreen/Splash.png.import -------------------------------------------------------------------------------- /Assets/Sprites/SplashScreen/SplashBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/SplashScreen/SplashBlack.png -------------------------------------------------------------------------------- /Assets/Sprites/SplashScreen/SplashBlack.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/SplashScreen/SplashBlack.png.import -------------------------------------------------------------------------------- /Assets/Sprites/TilesetImages/GrasslandTiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/TilesetImages/GrasslandTiles.png -------------------------------------------------------------------------------- /Assets/Sprites/TilesetImages/GrasslandTiles.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Sprites/TilesetImages/GrasslandTiles.png.import -------------------------------------------------------------------------------- /Assets/Theme/ClassicThemeV2/ClassicTheme_V2.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/ClassicThemeV2/ClassicTheme_V2.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_BasicButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_BasicButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_BlueButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_BlueButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_DangerButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_DangerButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_OrangeButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_OrangeButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_PinkButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_PinkButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_PurpleButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_PurpleButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ScrollContainer.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ScrollContainer.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_SuccessButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_SuccessButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_BasicButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_BasicButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_BlueButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_BlueButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_DangerButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_DangerButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_OrangeButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_OrangeButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_PinkButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_PinkButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_PurpleButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_PurpleButton.tres -------------------------------------------------------------------------------- /Assets/Theme/Theme_ZInner_SuccessButton.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Theme/Theme_ZInner_SuccessButton.tres -------------------------------------------------------------------------------- /Assets/Tilesets/BottomlessPitTileset.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Tilesets/BottomlessPitTileset.tres -------------------------------------------------------------------------------- /Assets/Tilesets/GrasslandTileset.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Assets/Tilesets/GrasslandTileset.tres -------------------------------------------------------------------------------- /Camera/Camera.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Camera/Camera.gd -------------------------------------------------------------------------------- /Camera/Camera2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Camera/Camera2D.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_CheckPoint/Ex_CheckPoint_1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_CheckPoint/Ex_CheckPoint_1.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_Iterator/Ex_Iterator_1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_Iterator/Ex_Iterator_1.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_Iterator/Ex_Iterator_2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_Iterator/Ex_Iterator_2.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_Iterator/Ex_Iterator_3.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_Iterator/Ex_Iterator_3.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_NESColorPalette/Palette.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_NESColorPalette/Palette.gd -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_2.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_3.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_3.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_4.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_4.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_5.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_SineBehavior/Ex_SineBehavior_5.tscn -------------------------------------------------------------------------------- /DEV_ExampleUsages/Ex_Teleporter/Ex_Teleporter_1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DEV_ExampleUsages/Ex_Teleporter/Ex_Teleporter_1.tscn -------------------------------------------------------------------------------- /DatabaseCore/Character (Unused)/Core/Character.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Character (Unused)/Core/Character.gd -------------------------------------------------------------------------------- /DatabaseCore/Character (Unused)/Core/Character.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Character (Unused)/Core/Character.tscn -------------------------------------------------------------------------------- /DatabaseCore/Character (Unused)/Core/CharacterGeneral.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Character (Unused)/Core/CharacterGeneral.gd -------------------------------------------------------------------------------- /DatabaseCore/Character (Unused)/Core/CharacterInitialEquipment.gd: -------------------------------------------------------------------------------- 1 | extends Node 2 | class_name FJ_Game_CharacterInitialEquipment 3 | 4 | -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/BladeMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/BladeMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/ChargeMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/ChargeMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Core/CharacterData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Core/CharacterData.gd -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/CrashMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/CrashMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Cream.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Cream.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/DarkwingDuck.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/DarkwingDuck.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/GrimeMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/GrimeMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Katyusha.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Katyusha.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Kirby.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Kirby.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Lance.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Lance.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Lip.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Lip.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/MagnetMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/MagnetMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/MegaMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/MegaMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/MegaMet.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/MegaMet.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/MetalMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/MetalMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Patchouli.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Patchouli.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/QuickMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/QuickMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Reimu.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Reimu.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/RokkoChan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/RokkoChan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/SheepMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/SheepMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/ToadMan.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/ToadMan.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/V.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/V.tres -------------------------------------------------------------------------------- /DatabaseCore/CharacterData/Zero.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/CharacterData/Zero.tres -------------------------------------------------------------------------------- /DatabaseCore/Classes (Unused)/Core/Class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Classes (Unused)/Core/Class.gd -------------------------------------------------------------------------------- /DatabaseCore/Classes (Unused)/Core/Class.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Classes (Unused)/Core/Class.tscn -------------------------------------------------------------------------------- /DatabaseCore/Classes (Unused)/Core/ClassGeneral.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Classes (Unused)/Core/ClassGeneral.gd -------------------------------------------------------------------------------- /DatabaseCore/Classes (Unused)/Core/ClassSkillsToLearn.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Classes (Unused)/Core/ClassSkillsToLearn.gd -------------------------------------------------------------------------------- /DatabaseCore/Classes (Unused)/Res/SkillsToLearnPack.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Classes (Unused)/Res/SkillsToLearnPack.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Core/ItemData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Core/ItemData.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemConsumable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemConsumable.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemCore.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemEquipable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemEquipable.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemEquipableAccessories.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemEquipableAccessories.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemEquipableCloth.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemEquipableCloth.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemEquipableFeet.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemEquipableFeet.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemEquipableHead.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemEquipableHead.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemEquipableWeapon.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemEquipableWeapon.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemKeyItem.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemKeyItem.gd -------------------------------------------------------------------------------- /DatabaseCore/Items/Res/ItemMaterial.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Items/Res/ItemMaterial.gd -------------------------------------------------------------------------------- /DatabaseCore/Skills (Unused)/Core/Skill.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Skills (Unused)/Core/Skill.gd -------------------------------------------------------------------------------- /DatabaseCore/Skills (Unused)/Core/Skill.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Skills (Unused)/Core/Skill.tscn -------------------------------------------------------------------------------- /DatabaseCore/Skills (Unused)/Core/SkillDamage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Skills (Unused)/Core/SkillDamage.gd -------------------------------------------------------------------------------- /DatabaseCore/Skills (Unused)/Core/SkillGeneral.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Skills (Unused)/Core/SkillGeneral.gd -------------------------------------------------------------------------------- /DatabaseCore/Skills (Unused)/Core/SkillsInvocation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Skills (Unused)/Core/SkillsInvocation.gd -------------------------------------------------------------------------------- /DatabaseCore/Utils/Enumerations/DamageType.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Utils/Enumerations/DamageType.gd -------------------------------------------------------------------------------- /DatabaseCore/Utils/Enumerations/Gender.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Utils/Enumerations/Gender.gd -------------------------------------------------------------------------------- /DatabaseCore/Utils/Enumerations/ItemCooldownGroup.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Utils/Enumerations/ItemCooldownGroup.gd -------------------------------------------------------------------------------- /DatabaseCore/Utils/GameplayConstants/Character.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/DatabaseCore/Utils/GameplayConstants/Character.gd -------------------------------------------------------------------------------- /Debug/RectHelper/RectHelper.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Debug/RectHelper/RectHelper.gd -------------------------------------------------------------------------------- /Debug/RectHelper/RectHelper.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Debug/RectHelper/RectHelper.tscn -------------------------------------------------------------------------------- /Entities/BlockChainDestroyer/AreaChainDestroyer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/BlockChainDestroyer/AreaChainDestroyer.gd -------------------------------------------------------------------------------- /Entities/BlockChainDestroyer/AreaChainDestroyer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/BlockChainDestroyer/AreaChainDestroyer.tscn -------------------------------------------------------------------------------- /Entities/BlockChainDestroyer/ChainDestroyController.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/BlockChainDestroyer/ChainDestroyController.gd -------------------------------------------------------------------------------- /Entities/BlockChainDestroyer/ChainDestroyController.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/BlockChainDestroyer/ChainDestroyController.tscn -------------------------------------------------------------------------------- /Entities/CheckpointZone/CheckpointZone.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/CheckpointZone/CheckpointZone.gd -------------------------------------------------------------------------------- /Entities/CheckpointZone/CheckpointZone.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/CheckpointZone/CheckpointZone.tscn -------------------------------------------------------------------------------- /Entities/Coin/Coin1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Coin/Coin1.gd -------------------------------------------------------------------------------- /Entities/Coin/Coin1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Coin/Coin1.tscn -------------------------------------------------------------------------------- /Entities/Coin/CoinCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Coin/CoinCore.gd -------------------------------------------------------------------------------- /Entities/Coin/CoinCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Coin/CoinCore.tscn -------------------------------------------------------------------------------- /Entities/Coin/Diamond1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Coin/Diamond1.tscn -------------------------------------------------------------------------------- /Entities/Coin/Item.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Coin/Item.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/CBFastLeft.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/CBFastLeft.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/CBFastRight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/CBFastRight.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/CBMidLeft.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/CBMidLeft.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/CBMidRight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/CBMidRight.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/CBSlowLeft.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/CBSlowLeft.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/CBSlowRight.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/CBSlowRight.tscn -------------------------------------------------------------------------------- /Entities/ConveyorBelt/ConveyorBelt.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/ConveyorBelt.gd -------------------------------------------------------------------------------- /Entities/ConveyorBelt/ConveyorBelt.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ConveyorBelt/ConveyorBelt.tscn -------------------------------------------------------------------------------- /Entities/DeathSpike/DeathSpike.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/DeathSpike/DeathSpike.gd -------------------------------------------------------------------------------- /Entities/DeathSpike/DeathSpike.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/DeathSpike/DeathSpike.tscn -------------------------------------------------------------------------------- /Entities/Effects/AddCoinCounter/CoinCounter1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/AddCoinCounter/CoinCounter1.gd -------------------------------------------------------------------------------- /Entities/Effects/AddCoinCounter/CoinCounter1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/AddCoinCounter/CoinCounter1.tscn -------------------------------------------------------------------------------- /Entities/Effects/AddCoinCounter/DiamondCounter1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/AddCoinCounter/DiamondCounter1.tscn -------------------------------------------------------------------------------- /Entities/Effects/CoinLandEffect/CoinLandEffect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/CoinLandEffect/CoinLandEffect.gd -------------------------------------------------------------------------------- /Entities/Effects/CoinLandEffect/CoinLandEffect.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/CoinLandEffect/CoinLandEffect.tscn -------------------------------------------------------------------------------- /Entities/Effects/Explosion/Explosion.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Explosion/Explosion.gd -------------------------------------------------------------------------------- /Entities/Effects/Explosion/Explosion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Explosion/Explosion.tscn -------------------------------------------------------------------------------- /Entities/Effects/FireworkEffect/FireworkEffect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/FireworkEffect/FireworkEffect.gd -------------------------------------------------------------------------------- /Entities/Effects/FireworkEffect/FireworkEffect.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/FireworkEffect/FireworkEffect.tscn -------------------------------------------------------------------------------- /Entities/Effects/IceCrackEffect/IceCrackEffect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/IceCrackEffect/IceCrackEffect.gd -------------------------------------------------------------------------------- /Entities/Effects/IceCrackEffect/IceShardEffect.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/IceCrackEffect/IceShardEffect.tscn -------------------------------------------------------------------------------- /Entities/Effects/LargeExplosion/LargeExplosion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/LargeExplosion/LargeExplosion.tscn -------------------------------------------------------------------------------- /Entities/Effects/MM_Thiun/Thiun.gd: -------------------------------------------------------------------------------- 1 | extends Sprite 2 | 3 | func _on_VisibilityNotifier2D_screen_exited() -> void: 4 | queue_free() -------------------------------------------------------------------------------- /Entities/Effects/MM_Thiun/Thiun.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/MM_Thiun/Thiun.tscn -------------------------------------------------------------------------------- /Entities/Effects/MM_Thiun/ThiunEffectCreator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/MM_Thiun/ThiunEffectCreator.gd -------------------------------------------------------------------------------- /Entities/Effects/MM_Thiun/ThiunEffectCreator.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/MM_Thiun/ThiunEffectCreator.tscn -------------------------------------------------------------------------------- /Entities/Effects/Particles/CoinParticles.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Particles/CoinParticles.tscn -------------------------------------------------------------------------------- /Entities/Effects/Particles/ExplosionParticles.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Particles/ExplosionParticles.tscn -------------------------------------------------------------------------------- /Entities/Effects/Particles/FireParticles.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Particles/FireParticles.tscn -------------------------------------------------------------------------------- /Entities/Effects/Particles/FireballParticle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Particles/FireballParticle.tscn -------------------------------------------------------------------------------- /Entities/Effects/Particles/MagicFieldParticles.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/Particles/MagicFieldParticles.tscn -------------------------------------------------------------------------------- /Entities/Effects/SlideDust/SlideDust.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/SlideDust/SlideDust.tscn -------------------------------------------------------------------------------- /Entities/Effects/SmallExplosion/SmallExplosion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/SmallExplosion/SmallExplosion.tscn -------------------------------------------------------------------------------- /Entities/Effects/VulnerableEffect/VulnerableEffect.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Effects/VulnerableEffect/VulnerableEffect.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Core/BossCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Core/BossCore.gd -------------------------------------------------------------------------------- /Entities/Enemy/Core/BossCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Core/BossCore.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Core/EnemyCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Core/EnemyCore.gd -------------------------------------------------------------------------------- /Entities/Enemy/Core/EnemyCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Core/EnemyCore.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Core/EnemyProjectileCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Core/EnemyProjectileCore.gd -------------------------------------------------------------------------------- /Entities/Enemy/Core/EnemyProjectileCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Core/EnemyProjectileCore.tscn -------------------------------------------------------------------------------- /Entities/Enemy/NonEnemyObj/CameraBottomScrollerUp.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/NonEnemyObj/CameraBottomScrollerUp.gd -------------------------------------------------------------------------------- /Entities/Enemy/NonEnemyObj/CameraBottomScrollerUp.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/NonEnemyObj/CameraBottomScrollerUp.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Basser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Basser.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_BasserAtk.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_BasserAtk.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_BasserAtk.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_BasserAtk.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_BasserMove.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_BasserMove.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_BasserMove.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_BasserMove.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_BasserStatic.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_BasserStatic.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Boss_FieryLizard.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Boss_FieryLizard.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Boss_FieryLizard.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Boss_FieryLizard.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Boulder.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Boulder.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Boulder.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Boulder.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Bullet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Bullet.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_LargeFieryBall.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_LargeFieryBall.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_LargeFieryBall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_LargeFieryBall.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Lobster.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Lobster.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Lobster.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Lobster.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Podoboo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Podoboo.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Podoboo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Podoboo.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Skull.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Skull.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_Skull.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_Skull.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_SpikePlatform.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_SpikePlatform.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_SpikePlatformFall.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_SpikePlatformFall.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_SpikePlatformFall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_SpikePlatformFall.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_SpikePlatformUpdown.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_SpikePlatformUpdown.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/Adv3_SpikePlatformUpdown.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/Adv3_SpikePlatformUpdown.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/IDK_Hammer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/IDK_Hammer.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/IDK_Hammer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/IDK_Hammer.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM10_BalladeCracker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM10_BalladeCracker.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM10_BalladeCracker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM10_BalladeCracker.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM10_BluesChargedShot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM10_BluesChargedShot.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM10_WheelCutter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM10_WheelCutter.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM10_WheelCutter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM10_WheelCutter.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM2_Bullet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM2_Bullet.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM3_JunkBlock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM3_JunkBlock.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM3_JunkBlock.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM3_JunkBlock.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM3_LargeExplosion.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM3_LargeExplosion.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM3_LargeExplosion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM3_LargeExplosion.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_100Watton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_100Watton.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_100Watton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_100Watton.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_100WattonBomb.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_100WattonBomb.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_100WattonBomb.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_100WattonBomb.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_100WattonBullet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_100WattonBullet.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_Dompan.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_Dompan.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_Dompan.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_Dompan.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_Metall.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_Metall.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_Metall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_Metall.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_ShieldAttacker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_ShieldAttacker.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM4_ShieldAttacker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM4_ShieldAttacker.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM5_c_MetallK1999.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM5_c_MetallK1999.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM5_c_MetallK1999.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM5_c_MetallK1999.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM5_c_WheelCutterJoe.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM5_c_WheelCutterJoe.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM5_c_WheelCutterJoe.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM5_c_WheelCutterJoe.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_CountBomb.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_CountBomb.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_CountBomb.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_CountBomb.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_FlameBurstFireball.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_FlameBurstFireball.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_FlameBurstFireball.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_FlameBurstFireball.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_FlameBurstHorizontal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_FlameBurstHorizontal.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_FlameBurstVertical.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_FlameBurstVertical.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_ObjFanUp.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_ObjFanUp.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_ObjFanUp.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_ObjFanUp.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_PowerSlam.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_PowerSlam.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_PowerSlam.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_PowerSlam.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_c_PoweredColton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_c_PoweredColton.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM6_c_PoweredColton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM6_c_PoweredColton.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_FreezeCracker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_FreezeCracker.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_FreezeCracker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_FreezeCracker.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_FreezeDebris.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_FreezeDebris.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_Icicle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_Icicle.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_Icicle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_Icicle.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_c_Boss_FreezeMan.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_c_Boss_FreezeMan.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM7_c_Boss_FreezeMan.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM7_c_Boss_FreezeMan.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM9_c_DiarnSP.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM9_c_DiarnSP.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM9_c_DiarnSP.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM9_c_DiarnSP.tscn -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM9_c_MachineGunJoe.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM9_c_MachineGunJoe.gd -------------------------------------------------------------------------------- /Entities/Enemy/Obj/MM9_c_MachineGunJoe.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Enemy/Obj/MM9_c_MachineGunJoe.tscn -------------------------------------------------------------------------------- /Entities/Pickups/Life.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/Life.gd -------------------------------------------------------------------------------- /Entities/Pickups/Life.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/Life.tscn -------------------------------------------------------------------------------- /Entities/Pickups/LifeEnergyLarge.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/LifeEnergyLarge.gd -------------------------------------------------------------------------------- /Entities/Pickups/LifeEnergyLarge.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/LifeEnergyLarge.tscn -------------------------------------------------------------------------------- /Entities/Pickups/LifeEnergySmall.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/LifeEnergySmall.gd -------------------------------------------------------------------------------- /Entities/Pickups/LifeEnergySmall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/LifeEnergySmall.tscn -------------------------------------------------------------------------------- /Entities/Pickups/PickupsCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/PickupsCore.gd -------------------------------------------------------------------------------- /Entities/Pickups/PickupsCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/PickupsCore.tscn -------------------------------------------------------------------------------- /Entities/Pickups/WeaponEnergyLarge.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/WeaponEnergyLarge.gd -------------------------------------------------------------------------------- /Entities/Pickups/WeaponEnergyLarge.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/WeaponEnergyLarge.tscn -------------------------------------------------------------------------------- /Entities/Pickups/WeaponEnergySmall.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/WeaponEnergySmall.gd -------------------------------------------------------------------------------- /Entities/Pickups/WeaponEnergySmall.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Pickups/WeaponEnergySmall.tscn -------------------------------------------------------------------------------- /Entities/Player/Player.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Player/Player.gd -------------------------------------------------------------------------------- /Entities/Player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Player/Player.tscn -------------------------------------------------------------------------------- /Entities/PlayerAreaNotifier/PlayerAreaNotifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/PlayerAreaNotifier/PlayerAreaNotifier.gd -------------------------------------------------------------------------------- /Entities/PlayerAreaNotifier/PlayerAreaNotifier.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/PlayerAreaNotifier/PlayerAreaNotifier.tscn -------------------------------------------------------------------------------- /Entities/PlayerProjectile/PlayerProjectileCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/PlayerProjectile/PlayerProjectileCore.gd -------------------------------------------------------------------------------- /Entities/PlayerProjectile/PlayerProjectileCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/PlayerProjectile/PlayerProjectileCore.tscn -------------------------------------------------------------------------------- /Entities/ProjectileReflector/ProjectileReflector.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ProjectileReflector/ProjectileReflector.gd -------------------------------------------------------------------------------- /Entities/ProjectileReflector/ProjectileReflector.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ProjectileReflector/ProjectileReflector.tscn -------------------------------------------------------------------------------- /Entities/ScreenTransitor/BossDoor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ScreenTransitor/BossDoor.gd -------------------------------------------------------------------------------- /Entities/ScreenTransitor/BossDoor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ScreenTransitor/BossDoor.tscn -------------------------------------------------------------------------------- /Entities/ScreenTransitor/ScreenTransitor.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ScreenTransitor/ScreenTransitor.gd -------------------------------------------------------------------------------- /Entities/ScreenTransitor/ScreenTransitor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/ScreenTransitor/ScreenTransitor.tscn -------------------------------------------------------------------------------- /Entities/Teleporter/Teleporter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Teleporter/Teleporter.gd -------------------------------------------------------------------------------- /Entities/Teleporter/Teleporter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/Teleporter/Teleporter.tscn -------------------------------------------------------------------------------- /Entities/WarpZone/WarpZone.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/WarpZone/WarpZone.gd -------------------------------------------------------------------------------- /Entities/WarpZone/WarpZone.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Entities/WarpZone/WarpZone.tscn -------------------------------------------------------------------------------- /GUI/BossHealthBar/BossHealthBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/BossHealthBar/BossHealthBar.gd -------------------------------------------------------------------------------- /GUI/BossHealthBar/BossHealthBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/BossHealthBar/BossHealthBar.tscn -------------------------------------------------------------------------------- /GUI/DamageCounter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/DamageCounter.gd -------------------------------------------------------------------------------- /GUI/DamageCounter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/DamageCounter.tscn -------------------------------------------------------------------------------- /GUI/FadeScreen/FadeScreen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/FadeScreen/FadeScreen.gd -------------------------------------------------------------------------------- /GUI/FadeScreen/FadeScreen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/FadeScreen/FadeScreen.tscn -------------------------------------------------------------------------------- /GUI/GameGui/GameGui.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameGui/GameGui.gd -------------------------------------------------------------------------------- /GUI/GameGui/GameGui.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameGui/GameGui.tscn -------------------------------------------------------------------------------- /GUI/GameGui/VitalBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameGui/VitalBar.png -------------------------------------------------------------------------------- /GUI/GameGui/VitalBar.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameGui/VitalBar.png.import -------------------------------------------------------------------------------- /GUI/GameHUD/GameHUD.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameHUD/GameHUD.gd -------------------------------------------------------------------------------- /GUI/GameHUD/GameHUD.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameHUD/GameHUD.tscn -------------------------------------------------------------------------------- /GUI/GameHUD/VitalBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameHUD/VitalBar.png -------------------------------------------------------------------------------- /GUI/GameHUD/VitalBar.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/GameHUD/VitalBar.png.import -------------------------------------------------------------------------------- /GUI/HpBar/HpBar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/HpBar/HpBar.gd -------------------------------------------------------------------------------- /GUI/HpBar/HpBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/HpBar/HpBar.tscn -------------------------------------------------------------------------------- /GUI/HpBar/HpBar_ExpExtended.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/HpBar/HpBar_ExpExtended.gd -------------------------------------------------------------------------------- /GUI/HpText/HpText.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/HpText/HpText.gd -------------------------------------------------------------------------------- /GUI/HpText/HpText.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/HpText/HpText.tscn -------------------------------------------------------------------------------- /GUI/HpText/HpText_Extended.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/HpText/HpText_Extended.gd -------------------------------------------------------------------------------- /GUI/NinePatchPanel/NinePatchRect_Classic.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/NinePatchPanel/NinePatchRect_Classic.tscn -------------------------------------------------------------------------------- /GUI/ParallaxIconsBg/IconParallaxer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/ParallaxIconsBg/IconParallaxer.gd -------------------------------------------------------------------------------- /GUI/ParallaxIconsBg/IconParallaxer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/GUI/ParallaxIconsBg/IconParallaxer.tscn -------------------------------------------------------------------------------- /Levels/Core/Level.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Core/Level.gd -------------------------------------------------------------------------------- /Levels/Core/Lv_Core.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Core/Lv_Core.tscn -------------------------------------------------------------------------------- /Levels/Levels/Adv3_BottomLessPit.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/Adv3_BottomLessPit.tscn -------------------------------------------------------------------------------- /Levels/Levels/Adv3_BottomlessPitBossTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/Adv3_BottomlessPitBossTest.tscn -------------------------------------------------------------------------------- /Levels/Levels/Adv3_BottomlessPitYT.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/Adv3_BottomlessPitYT.tscn -------------------------------------------------------------------------------- /Levels/Levels/FromYT_VideoLevel.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/FromYT_VideoLevel.tscn -------------------------------------------------------------------------------- /Levels/Levels/Grassland_1_2OP.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/Grassland_1_2OP.tscn -------------------------------------------------------------------------------- /Levels/Levels/Grassland_1_2OP_v2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/Grassland_1_2OP_v2.tscn -------------------------------------------------------------------------------- /Levels/Levels/Sprite.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Levels/Sprite.gd -------------------------------------------------------------------------------- /Levels/Views/View.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Views/View.gd -------------------------------------------------------------------------------- /Levels/Views/View.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Views/View.tscn -------------------------------------------------------------------------------- /Levels/Views/ViewContainer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Levels/Views/ViewContainer.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/AnchorBehavior2D/AnchorBehavior2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/AnchorBehavior2D/AnchorBehavior2D.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/AnchorBehavior2D/AnchorBehavior2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/AnchorBehavior2D/AnchorBehavior2D.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/AudioManager/AudioManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/AudioManager/AudioManager.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/AudioManager/AudioManager.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/AudioManager/AudioManager.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/AutoQueueFree/AutoQueueFree.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/AutoQueueFree/AutoQueueFree.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/AutoQueueFree/AutoQueueFree.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/AutoQueueFree/AutoQueueFree.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/BulletBehavior2D/BulletBehavior2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/BulletBehavior2D/BulletBehavior2D.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/BulletBehavior2D/BulletBehavior2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/BulletBehavior2D/BulletBehavior2D.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ButtonEffect/ButtonEffect.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ButtonEffect/ButtonEffect.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ButtonEffect/ButtonEffect.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ButtonEffect/ButtonEffect.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ButtonEffect/ButtonEffectCreator.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ButtonEffect/ButtonEffectCreator.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ButtonEffect/ButtonEffectCreator.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ButtonEffect/ButtonEffectCreator.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ItemTable/ItemSet/ItemSet.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ItemTable/ItemSet/ItemSet.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ItemTable/ItemSet/ItemSet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ItemTable/ItemSet/ItemSet.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ItemTable/ItemTable.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ItemTable/ItemTable.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/ItemTable/ItemTable.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/ItemTable/ItemTable.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/SineBehavior2D/SineBehavior2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/SineBehavior2D/SineBehavior2D.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/SineBehavior2D/SineBehavior2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/SineBehavior2D/SineBehavior2D.tscn -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/SpriteCycling2D/SpriteCycling2D.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/SpriteCycling2D/SpriteCycling2D.gd -------------------------------------------------------------------------------- /Lib/FJ_LibHelper/SpriteCycling2D/SpriteCycling2D.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_LibHelper/SpriteCycling2D/SpriteCycling2D.tscn -------------------------------------------------------------------------------- /Lib/FJ_NodeExtensions/ButtonPlus/ButtonPlus.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_NodeExtensions/ButtonPlus/ButtonPlus.gd -------------------------------------------------------------------------------- /Lib/FJ_NodeExtensions/ButtonPlus/ButtonPlus.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_NodeExtensions/ButtonPlus/ButtonPlus.tscn -------------------------------------------------------------------------------- /Lib/FJ_ResExtensions/CurvePlus/CurvePlus.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Lib/FJ_ResExtensions/CurvePlus/CurvePlus.gd -------------------------------------------------------------------------------- /Misc/CheckPointManager/CheckpointManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/CheckPointManager/CheckpointManager.gd -------------------------------------------------------------------------------- /Misc/CurrencyManager/CurrencyManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/CurrencyManager/CurrencyManager.gd -------------------------------------------------------------------------------- /Misc/Debug.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/Debug.gd -------------------------------------------------------------------------------- /Misc/DebugShapeDrawer/DebugShapeDrawer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/DebugShapeDrawer/DebugShapeDrawer.gd -------------------------------------------------------------------------------- /Misc/DebugShapeDrawer/DebugShapeDrawer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/DebugShapeDrawer/DebugShapeDrawer.tscn -------------------------------------------------------------------------------- /Misc/GameSettings/Audio.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/GameSettings/Audio.gd -------------------------------------------------------------------------------- /Misc/GameSettings/GameSettings.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/GameSettings/GameSettings.gd -------------------------------------------------------------------------------- /Misc/GameSettings/GameSettings.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/GameSettings/GameSettings.tscn -------------------------------------------------------------------------------- /Misc/GameSettings/Gameplay.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/GameSettings/Gameplay.gd -------------------------------------------------------------------------------- /Misc/GlobalVariables/GlobalVariables.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/GlobalVariables/GlobalVariables.gd -------------------------------------------------------------------------------- /Misc/GlobalVariables/GlobalVariables.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/GlobalVariables/GlobalVariables.tscn -------------------------------------------------------------------------------- /Misc/InventoryCore/InventoryManager.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/InventoryCore/InventoryManager.gd -------------------------------------------------------------------------------- /Misc/LevelBrightnessModifier/LevelBrightness.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/LevelBrightnessModifier/LevelBrightness.gd -------------------------------------------------------------------------------- /Misc/LevelBrightnessModifier/LevelBrightnessModifier.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/LevelBrightnessModifier/LevelBrightnessModifier.gd -------------------------------------------------------------------------------- /Misc/Libraries/InfoClasses/DeadEnemyInfo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/Libraries/InfoClasses/DeadEnemyInfo.gd -------------------------------------------------------------------------------- /Misc/Libraries/Utils/NESColorPalette/NESColorPalette.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/Libraries/Utils/NESColorPalette/NESColorPalette.gd -------------------------------------------------------------------------------- /Misc/Libraries/Utils/RectCentralizer/RectCentralizer.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/Libraries/Utils/RectCentralizer/RectCentralizer.gd -------------------------------------------------------------------------------- /Misc/ObjSpawner/ObjSpawner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/ObjSpawner/ObjSpawner.gd -------------------------------------------------------------------------------- /Misc/ObjSpawner/ObjSpawner.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/ObjSpawner/ObjSpawner.tscn -------------------------------------------------------------------------------- /Misc/PaletteSpriteCore/PaletteSpriteCore.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/PaletteSpriteCore/PaletteSpriteCore.gd -------------------------------------------------------------------------------- /Misc/PaletteSpriteCore/PaletteSpriteCore.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/PaletteSpriteCore/PaletteSpriteCore.tscn -------------------------------------------------------------------------------- /Misc/PaletteSpriteCore/SpriteColorPaletteData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/PaletteSpriteCore/SpriteColorPaletteData.gd -------------------------------------------------------------------------------- /Misc/PlatformerSprite/PlatformerSprite.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/PlatformerSprite/PlatformerSprite.gd -------------------------------------------------------------------------------- /Misc/PlatformerSprite/PlatformerSprite.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/PlatformerSprite/PlatformerSprite.tscn -------------------------------------------------------------------------------- /Misc/PlayerStats/PlayerStats.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/PlayerStats/PlayerStats.gd -------------------------------------------------------------------------------- /Misc/TileMapGlitchNESStyle/TileMapGlitch.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/TileMapGlitchNESStyle/TileMapGlitch.gd -------------------------------------------------------------------------------- /Misc/TileMapGlitchNESStyle/TileMapGlitch.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Misc/TileMapGlitchNESStyle/TileMapGlitch.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/README.md -------------------------------------------------------------------------------- /Splash/SplashScreen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Splash/SplashScreen.gd -------------------------------------------------------------------------------- /Splash/SplashScreen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/Splash/SplashScreen.tscn -------------------------------------------------------------------------------- /default_bus_layout.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/default_bus_layout.tres -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-mega-man/Mega-Man-Engine/HEAD/project.godot --------------------------------------------------------------------------------