gitextract_xbofjviu/ ├── .gitattributes ├── .gitignore ├── Backgrounds/ │ └── README.md ├── COMMUNITY_LINKS.md ├── CONTRIBUTING.md ├── Engine/ │ └── GBT Player Banks/ │ ├── Ember Triangle.s │ └── README.md ├── Fonts/ │ └── README.md ├── LICENSE ├── Music/ │ ├── Action/ │ │ ├── Boss fight1.mod │ │ ├── Boss fight2.mod │ │ ├── Compression.mod │ │ ├── Dancing and Infiltrating.mod │ │ ├── Free OST 1 - Backstreets.mod │ │ ├── Free OST 1 - Fighting.mod │ │ ├── Joyous Takeoff.mod │ │ ├── Monty's Overheating Spaceship.mod │ │ ├── Serious Ping Pong Matches.mod │ │ ├── Sneaking Around.mod │ │ ├── Sugar Craze.mod │ │ ├── Tape It Together.mod │ │ └── Tense Boss Battle.mod │ ├── Drumbeats/ │ │ ├── Backbeat Metal Drumming.mod │ │ ├── Boots Cats.mod │ │ ├── Breakbeat with Hats.mod │ │ ├── Duck Tales Drumbeat.mod │ │ ├── Halftime Metal Drumming.mod │ │ ├── Kick Kick Kick Crash.mod │ │ ├── Kick Kick Snare.mod │ │ ├── Kick Stutter.mod │ │ ├── Messy 90s Uptempo Hiphop.mod │ │ ├── Supa-Hip Breakbeat.mod │ │ └── Upbeat Metal Drumming.mod │ ├── Exploration/ │ │ ├── Determined.mod │ │ ├── Peppy Pop Song.mod │ │ ├── Scrolling Text.mod │ │ └── Twilight Drive.mod │ ├── Jingles/ │ │ ├── Awkward Death.mod │ │ ├── Battle Encounter.mod │ │ ├── Battle Motif.mod │ │ ├── Excited Suspense.mod │ │ ├── Falling Asleep.mod │ │ ├── Nursery Rhyme with pauses.mod │ │ ├── Out of Energy Game Over.mod │ │ ├── Pitfall Death.mod │ │ ├── Radical Intro.mod │ │ ├── Radical Victory.mod │ │ ├── Rascal's Ditty.mod │ │ ├── Short Lullaby with Key Modulation.mod │ │ ├── Short SML2-Style Jingle.mod │ │ ├── Silly Death.mod │ │ ├── Slow death.mod │ │ ├── Swing into Victory.mod │ │ ├── The Sad Truth.mod │ │ ├── Victory Fanfare.mod │ │ └── Victory Lap.mod │ ├── Menu Themes/ │ │ ├── Free OST 1 - Character Select.mod │ │ ├── Free OST 1 - Ending Theme.mod │ │ ├── Free OST 1 - Fanfare.mod │ │ └── MBR Settings.mod │ ├── National Anthems/ │ │ ├── France Intro.mod │ │ ├── Germany Intro.mod │ │ ├── Italy Intro.mod │ │ ├── United Kingdom Intro.mod │ │ └── United States of America Intro.mod │ ├── Overworld/ │ │ ├── Darkstone.mod │ │ ├── Darkstone_Remix.mod │ │ ├── FridgeMusic.mod │ │ ├── Great Melody 01.mod │ │ ├── Great Melody02.mod │ │ ├── In the Town.mod │ │ ├── Little Tune 11.mod │ │ ├── ParkMusic.mod │ │ ├── Peppy Regal Overworld.mod │ │ ├── The Gang's All Here.mod │ │ ├── Villains of Hiphop.mod │ │ └── my_streets2.mod │ ├── Readme.md │ ├── SFX/ │ │ ├── Alarm Clock.mod │ │ ├── Alarm System.mod │ │ ├── Clock.mod │ │ ├── Clock2.mod │ │ ├── EuroCop.mod │ │ ├── Explosion1.mod │ │ ├── Missile Alert.mod │ │ ├── Nokia Tune.mod │ │ ├── Phone Ring.mod │ │ ├── Pickup_Coin.mod │ │ ├── Powerup.mod │ │ ├── Powerup2.mod │ │ ├── Powerup3.mod │ │ ├── Readme.md │ │ ├── Squeal Door.mod │ │ ├── Vibration Alarm.mod │ │ ├── fast wind gust.mod │ │ ├── harsh wind gust.mod │ │ ├── menu no thanks.mod │ │ ├── nuh-uh.mod │ │ ├── odd open inventory.mod │ │ ├── old telephone 1.mod │ │ ├── racecar zoom.mod │ │ └── smb3okay.mod │ └── Spooky/ │ ├── Detective Intro.mod │ └── Short Hauntings.mod ├── README.md ├── Scripts/ │ └── Camera/ │ ├── Screenscroll/ │ │ ├── screenscroll_scene_init.txt │ │ └── screenscroll_trigger.txt │ └── break camera from player.txt ├── Sprites/ │ ├── Animated/ │ │ └── README.md │ └── Static/ │ ├── Cats/ │ │ └── README.md │ └── README.md ├── Tilesets/ │ └── Credits.md └── UI/ └── README.md