From d382216f2b72c0aee9a9c2b19b048b3385c86b79 Mon Sep 17 00:00:00 2001 From: max4805 Date: Sat, 20 Feb 2021 22:42:33 +0100 Subject: [PATCH] Added automatic retries when receiving null responses from GameBanana --- README.md | 4 +- pom.xml | 2 +- .../updatechecker/DatabaseUpdater.java | 6 +- .../ModSearchDatabaseBuilder.java | 3 +- uploads/everestupdate.yaml | 366 ++- uploads/everestupdateexcluded.yaml | 96 +- uploads/everestupdatenoyaml.yaml | 2 +- uploads/modsearchdatabase.yaml | 2624 +++++++++-------- 8 files changed, 1751 insertions(+), 1352 deletions(-) diff --git a/README.md b/README.md index 9595a32..cd62e4b 100755 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Get Maven, then run the following command at the project root: mvn clean package ``` -This will build the project to `target/update-checker-0.0.13.jar`. +This will build the project to `target/update-checker-0.0.14.jar`. ## Running the project @@ -61,7 +61,7 @@ First, follow these steps to set it up: Then, to run the project, browse to where the JAR is in a terminal / command prompt, then run ``` -java -jar update-checker-0.0.13.jar [port] [minutes] +java -jar update-checker-0.0.14.jar [port] [minutes] ``` [port] is the HTTP port for the server. If you don't provide any, there won't be any server hosted (useful if you already have something else hosting the files). diff --git a/pom.xml b/pom.xml index 4e09d8f..91a48d6 100755 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.max480.everest.updatechecker update-checker - 0.0.13 + 0.0.14 1.8 diff --git a/src/main/java/com/max480/everest/updatechecker/DatabaseUpdater.java b/src/main/java/com/max480/everest/updatechecker/DatabaseUpdater.java index 3d95964..13dd9b6 100755 --- a/src/main/java/com/max480/everest/updatechecker/DatabaseUpdater.java +++ b/src/main/java/com/max480/everest/updatechecker/DatabaseUpdater.java @@ -134,7 +134,8 @@ private boolean loadPage(int page) throws IOException { List> mods = runWithRetry(() -> { try (InputStream is = openStreamWithTimeout(new URL("https://api.gamebanana.com/Core/List/New?page=" + page + "&gameid=6460&format=yaml"))) { - return new Yaml().load(is); + return Optional.ofNullable(new Yaml().>>load(is)) + .orElseThrow(() -> new IOException("Ended up with a null value when loading a mod page")); } }); @@ -233,7 +234,8 @@ private void loadPageModInfo(String modInfoUrl, List queriedModI log.trace("Mod info URL: {}", modInfoUrl); List> mods = runWithRetry(() -> { try (InputStream is = openStreamWithTimeout(new URL(modInfoUrl))) { - return new Yaml().load(is); + return Optional.ofNullable(new Yaml().>>load(is)) + .orElseThrow(() -> new IOException("Ended up with a null value when loading mod info")); } }); diff --git a/src/main/java/com/max480/everest/updatechecker/ModSearchDatabaseBuilder.java b/src/main/java/com/max480/everest/updatechecker/ModSearchDatabaseBuilder.java index 21a7659..7d1b16e 100755 --- a/src/main/java/com/max480/everest/updatechecker/ModSearchDatabaseBuilder.java +++ b/src/main/java/com/max480/everest/updatechecker/ModSearchDatabaseBuilder.java @@ -201,7 +201,8 @@ private void fetchAuthorNames() throws IOException { // run the request, parse the result, and add this result to the list. authorNames = DatabaseUpdater.runWithRetry(() -> { try (InputStream is = DatabaseUpdater.openStreamWithTimeout(new URL(url))) { - return new Yaml().load(is); + return Optional.ofNullable(new Yaml().>>load(is)) + .orElseThrow(() -> new IOException("Ended up with a null value when loading a mod page")); } }); } diff --git a/uploads/everestupdate.yaml b/uploads/everestupdate.yaml index f00edce..c1b8cd1 100755 --- a/uploads/everestupdate.yaml +++ b/uploads/everestupdate.yaml @@ -182,11 +182,11 @@ OtherSelfDialog: URL: https://gamebanana.com/mmdl/449488 ContortHelper: GameBananaType: Gamefile - Version: 1.4.0 - LastUpdate: 1613150080 + Version: 1.4.2 + LastUpdate: 1613706100 GameBananaId: 12592 - xxHash: [b2371051c4158987] - URL: https://gamebanana.com/mmdl/519591 + xxHash: [8f8e3238f8ecdb72] + URL: https://gamebanana.com/mmdl/522326 straightflychallenge: GameBananaType: Map Version: 1.0.0 @@ -208,6 +208,20 @@ BlackholeRealm: GameBananaId: 206758 xxHash: [e27d20f9dc7dc19d] URL: https://gamebanana.com/mmdl/440308 +SPRINT: + GameBananaType: Map + Version: '1.0' + LastUpdate: 1613426124 + GameBananaId: 214889 + xxHash: [abde69fca8be1246] + URL: https://gamebanana.com/mmdl/521009 +Iris_map: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613579090 + GameBananaId: 214925 + xxHash: [ffe571c42f006497] + URL: https://gamebanana.com/mmdl/521724 Sweet Victory: GameBananaType: Gamefile Version: 1.0.0 @@ -313,6 +327,13 @@ FemtoHelper: GameBananaId: 13902 xxHash: [6bcc946acb3f3951] URL: https://gamebanana.com/mmdl/508182 +Crystal Garden: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613814127 + GameBananaId: 214980 + xxHash: [702fa93245c91dff] + URL: https://gamebanana.com/mmdl/522776 MouseControls: GameBananaType: Gamefile Version: 1.2.1 @@ -348,13 +369,6 @@ MidnightAquarium: GameBananaId: 211644 xxHash: [cea9f499fe87a93b] URL: https://gamebanana.com/mmdl/482416 -TheSecretOfCelesteMountain: - GameBananaType: Map - Version: 1.0.3 - LastUpdate: 1570286838 - GameBananaId: 203397 - xxHash: [c20b2cba4c006302] - URL: https://gamebanana.com/mmdl/434250 Return To The Mountain: GameBananaType: Map Version: 1.0.0 @@ -362,6 +376,13 @@ Return To The Mountain: GameBananaId: 211167 xxHash: [e73dfaed823949e1] URL: https://gamebanana.com/mmdl/476403 +TheSecretOfCelesteMountain: + GameBananaType: Map + Version: 2.0.0 + LastUpdate: 1613659028 + GameBananaId: 203397 + xxHash: [dbb7f02f62a8a563] + URL: https://gamebanana.com/mmdl/522074 MacaHotel: GameBananaType: Map Version: 1.0.0 @@ -448,11 +469,11 @@ DonkerMod: URL: https://gamebanana.com/mmdl/516778 Hyperline: GameBananaType: Effect - Version: 0.1.11 - LastUpdate: 1612935078 + Version: 0.1.12 + LastUpdate: 1613357427 GameBananaId: 6528 - xxHash: [6ba9e2962dd8365b] - URL: https://gamebanana.com/mmdl/518498 + xxHash: [993c517e89aa6e96] + URL: https://gamebanana.com/mmdl/520676 Infinite Farewell: GameBananaType: Map Version: 1.0.0 @@ -460,6 +481,13 @@ Infinite Farewell: GameBananaId: 214596 xxHash: [45398c8331fc6886] URL: https://gamebanana.com/mmdl/516192 +XaphanHelper: + GameBananaType: Gamefile + Version: 1.0.0 + LastUpdate: 1613660265 + GameBananaId: 15412 + xxHash: [f6d5daab092e03d3] + URL: https://gamebanana.com/mmdl/522077 ForsakenMetropolis: GameBananaType: Map Version: 1.0.1 @@ -470,10 +498,10 @@ ForsakenMetropolis: I Super Ultra Love You: GameBananaType: Map Version: 1.0.0 - LastUpdate: 1613199411 + LastUpdate: 1613300119 GameBananaId: 214815 - xxHash: [ade48631dd9da71c] - URL: https://gamebanana.com/mmdl/519875 + xxHash: [7506f4f5ad8c3740] + URL: https://gamebanana.com/mmdl/520383 KaydenFoxSkin: GameBananaType: Skin Version: 1.0.0 @@ -504,11 +532,11 @@ FoP: URL: https://gamebanana.com/mmdl/518390 VivHelper: GameBananaType: Gamefile - Version: 1.2.4 - LastUpdate: 1613216150 + Version: 1.2.5 + LastUpdate: 1613282435 GameBananaId: 12484 - xxHash: [7dfbd5c713d715a7] - URL: https://gamebanana.com/mmdl/519942 + xxHash: [b511f5a2c8921ca7] + URL: https://gamebanana.com/mmdl/520329 Climbing Blind Trilogy: GameBananaType: Map Version: 1.5.0 @@ -525,11 +553,11 @@ Hug A Kevin: URL: https://gamebanana.com/mmdl/484690 TransBerry: GameBananaType: Skin - Version: 1.4.0 - LastUpdate: 1613108968 + Version: 1.4.1 + LastUpdate: 1613560322 GameBananaId: 182207 - xxHash: [089c673a67f4a7cb] - URL: https://gamebanana.com/mmdl/519442 + xxHash: [9772b35b52068834] + URL: https://gamebanana.com/mmdl/521650 Moonless Dream: GameBananaType: Map Version: 0.1.1 @@ -700,11 +728,11 @@ Randomizer: URL: https://gamebanana.com/mmdl/505866 EmHelper: GameBananaType: Gamefile - Version: 1.0.4 - LastUpdate: 1610102064 + Version: 1.1.0 + LastUpdate: 1613806650 GameBananaId: 13280 - xxHash: [f67f4badb9fd7506] - URL: https://gamebanana.com/mmdl/506456 + xxHash: [b6491d6bec07d226] + URL: https://gamebanana.com/mmdl/522754 World's hardest game remake: GameBananaType: Map Version: 1.0.0 @@ -988,10 +1016,10 @@ StaminaMeter: The Speed-Side Pack: GameBananaType: Map Version: 1.0.0 - LastUpdate: 1613089913 + LastUpdate: 1613703859 GameBananaId: 214763 - xxHash: [0d017ff391b9c57d] - URL: https://gamebanana.com/mmdl/519343 + xxHash: [652ecd27b182a41b] + URL: https://gamebanana.com/mmdl/522308 Suika's Summit: GameBananaType: Map Version: 1.0.0 @@ -1106,11 +1134,11 @@ ExplorationMod: URL: https://gamebanana.com/mmdl/480639 CrystalValley: GameBananaType: Map - Version: '1.4' - LastUpdate: 1593274210 + Version: 1.4.1 + LastUpdate: 1613269182 GameBananaId: 205230 - xxHash: [aaa44daf19dc0189] - URL: https://gamebanana.com/mmdl/470884 + xxHash: [f60724716ad1c4b9] + URL: https://gamebanana.com/mmdl/520253 OutcastOutback: GameBananaType: Map Version: 1.0.0 @@ -1218,11 +1246,11 @@ SummitEncore: URL: https://gamebanana.com/mmdl/495933 Sanctuary_jan_01: GameBananaType: Map - Version: '1.13' - LastUpdate: 1613018257 + Version: '1.14' + LastUpdate: 1613453293 GameBananaId: 214673 - xxHash: [08a1b4b29ea0ea3c] - URL: https://gamebanana.com/mmdl/518952 + xxHash: [f7f303f80332d491] + URL: https://gamebanana.com/mmdl/521164 JsTextues: GameBananaType: Skin Version: 1.4.1 @@ -1281,11 +1309,11 @@ UltraGarbage: URL: https://gamebanana.com/mmdl/508816 CherryHelper: GameBananaType: Gamefile - Version: 1.6.6 - LastUpdate: 1612125048 + Version: 1.6.7 + LastUpdate: 1613312554 GameBananaId: 11683 - xxHash: [0313b4dbb988b448] - URL: https://gamebanana.com/mmdl/514264 + xxHash: [1104aa6310c65b0c] + URL: https://gamebanana.com/mmdl/520422 BGswitch: GameBananaType: Gamefile Version: 1.1.5 @@ -1335,6 +1363,13 @@ TrampolineOutskirts: GameBananaId: 209165 xxHash: [5e4c942e84b32753] URL: https://gamebanana.com/mmdl/464447 +downpour: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613683151 + GameBananaId: 214560 + xxHash: [b50f0c199974c44a] + URL: https://gamebanana.com/mmdl/522199 Celestial Doomsday: GameBananaType: Map Version: 1.5.0 @@ -1491,11 +1526,11 @@ FancyTileEntities: URL: https://gamebanana.com/mmdl/487549 Etselec: GameBananaType: Map - Version: 2.4.0 - LastUpdate: 1596892308 + Version: 2.4.1 + LastUpdate: 1613555016 GameBananaId: 203966 - xxHash: [1b662082ee132d68] - URL: https://gamebanana.com/mmdl/479222 + xxHash: [fb43d0aa51d57ed7] + URL: https://gamebanana.com/mmdl/521640 IronSmelterysCampaign: GameBananaType: Map Version: 0.5.31 @@ -1597,10 +1632,10 @@ L9M2LostTheo: SmaerdNogylop: GameBananaType: Map Version: '6.0' - LastUpdate: 1609316904 + LastUpdate: 1613641150 GameBananaId: 206747 - xxHash: [6432977ede1a3fbb] - URL: https://gamebanana.com/mmdl/504496 + xxHash: [2c7b51585e9641ef] + URL: https://gamebanana.com/mmdl/522021 ProBananaSkin: GameBananaType: Skin Version: '1.2' @@ -1608,6 +1643,13 @@ ProBananaSkin: GameBananaId: 183054 xxHash: [6fcd0d6627b4c87b] URL: https://gamebanana.com/mmdl/511105 +NeonMetropolis: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613461863 + GameBananaId: 214866 + xxHash: [5808c208ce30a974] + URL: https://gamebanana.com/mmdl/521184 its space jam: GameBananaType: Map Version: NoVersion @@ -1645,11 +1687,11 @@ Jankness: URL: https://gamebanana.com/mmdl/504335 changgePAO: GameBananaType: Map - Version: 1.5.4 - LastUpdate: 1613191185 + Version: 1.5.5 + LastUpdate: 1613416313 GameBananaId: 214711 - xxHash: [1d588fb828aedf55] - URL: https://gamebanana.com/mmdl/519839 + xxHash: [505da1ea137102b0] + URL: https://gamebanana.com/mmdl/520937 MaddyCrown: GameBananaType: Skin Version: 1.0.1 @@ -1790,6 +1832,13 @@ CelesteNet.Client: GameBananaId: 12267 xxHash: [c5c6fd50abeca26a] URL: https://gamebanana.com/mmdl/475922 +groundedwallboost: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613645167 + GameBananaId: 214937 + xxHash: [cd969d806f422670] + URL: https://gamebanana.com/mmdl/522030 Vriska: GameBananaType: Skin Version: 1.0.0 @@ -1800,10 +1849,10 @@ Vriska: Dreamy_trials: GameBananaType: Map Version: 1.0.0 - LastUpdate: 1613032932 + LastUpdate: 1613502520 GameBananaId: 214687 - xxHash: [fc552bdd7f86410e] - URL: https://gamebanana.com/mmdl/519020 + xxHash: [b46688bb6e12143a] + URL: https://gamebanana.com/mmdl/521353 Lunar Ruins: GameBananaType: Map Version: 1.0.0 @@ -1869,11 +1918,11 @@ Error 404: URL: https://gamebanana.com/mmdl/488131 IronSmelterysCampaign(DevelopmentVersion): GameBananaType: Wip - Version: 0.5.40 - LastUpdate: 1610570795 + Version: 0.5.41 + LastUpdate: 1613419427 GameBananaId: 52567 - xxHash: [7cdea0885eded147] - URL: https://gamebanana.com/mmdl/507864 + xxHash: [2ee583b0cbadb09b] + URL: https://gamebanana.com/mmdl/520950 Collab Randomizer: GameBananaType: Gamefile Version: '0.1' @@ -1981,18 +2030,18 @@ KaydenCommands: URL: https://gamebanana.com/mmdl/437707 IsaGrabBag: GameBananaType: Gamefile - Version: 1.3.6 - LastUpdate: 1613190182 + Version: 1.4.1 + LastUpdate: 1613274260 GameBananaId: 8283 - xxHash: [293ab6d028caca1a] - URL: https://gamebanana.com/mmdl/519835 + xxHash: [4ba58160a385e9ba] + URL: https://gamebanana.com/mmdl/520286 LuaCutscenes: GameBananaType: Gamefile - Version: 0.2.1 - LastUpdate: 1604066069 + Version: 0.2.2 + LastUpdate: 1613774106 GameBananaId: 10788 - xxHash: [695ee543cf073de4] - URL: https://gamebanana.com/mmdl/493300 + xxHash: [929d752b80450200] + URL: https://gamebanana.com/mmdl/522587 YetAnotherHelper: GameBananaType: Gamefile Version: 1.2.1 @@ -2021,6 +2070,13 @@ Ythundyth's Chapter 6 Death Label: GameBananaId: 213349 xxHash: [dc645adc0f6d0492] URL: https://gamebanana.com/mmdl/500150 +second_try: + GameBananaType: Map + Version: '1.0' + LastUpdate: 1613289749 + GameBananaId: 214852 + xxHash: [04de62c84bf46e28] + URL: https://gamebanana.com/mmdl/520351 QuickieMountain: GameBananaType: Map Version: 1.0.1 @@ -2037,11 +2093,11 @@ SpoopyRepaint: URL: https://gamebanana.com/mmdl/501924 FoeEnMonolith: GameBananaType: Map - Version: 1.0.0 - LastUpdate: 1613152615 + Version: 1.0.1 + LastUpdate: 1613705333 GameBananaId: 214800 - xxHash: [5b3957eb10763dd2] - URL: https://gamebanana.com/mmdl/519613 + xxHash: [4618af7f430a5b09] + URL: https://gamebanana.com/mmdl/522320 Asleep: GameBananaType: Map Version: 1.7.0 @@ -2065,11 +2121,11 @@ Rotating Resort: URL: https://gamebanana.com/mmdl/506773 SpeedrunTool: GameBananaType: Tool - Version: 3.4.26 - LastUpdate: 1612854379 + Version: 3.4.27 + LastUpdate: 1613235026 GameBananaId: 6597 - xxHash: [0d720238f2a718f4] - URL: https://gamebanana.com/mmdl/518086 + xxHash: [baaf232084dda934] + URL: https://gamebanana.com/mmdl/520027 Tsubasa no Aru: GameBananaType: Map Version: 1.0.0 @@ -2077,6 +2133,13 @@ Tsubasa no Aru: GameBananaId: 212513 xxHash: [f713daf148db1edf] URL: https://gamebanana.com/mmdl/489794 +Quill: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613325766 + GameBananaId: 214807 + xxHash: [96a991a422c40329] + URL: https://gamebanana.com/mmdl/520478 Ultra Hell: GameBananaType: Map Version: 1.0.0 @@ -2206,10 +2269,10 @@ Levels of Darkness: MaxHelpingHand: GameBananaType: Gamefile Version: 1.12.5 - LastUpdate: 1612721746 + LastUpdate: 1613322782 GameBananaId: 11423 - xxHash: [9a706019e2cf9c4f] - URL: https://gamebanana.com/mmdl/517450 + xxHash: [609b6c70eead3322] + URL: https://gamebanana.com/mmdl/520461 demonetized_celeste: GameBananaType: Gamefile Version: 1.0.0 @@ -2240,11 +2303,11 @@ EventMode: URL: https://gamebanana.com/mmdl/442701 CrystallineHelper: GameBananaType: Gamefile - Version: 1.6.5 - LastUpdate: 1612583768 + Version: 1.8.0 + LastUpdate: 1613768542 GameBananaId: 12664 - xxHash: [0b0f41670080b559] - URL: https://gamebanana.com/mmdl/516710 + xxHash: [e3a6778960ae52c3] + URL: https://gamebanana.com/mmdl/522551 DashlessDreamBlocks: GameBananaType: Gamefile Version: 1.0.0 @@ -2282,11 +2345,11 @@ DeathMarkers: URL: https://gamebanana.com/mmdl/425531 DJMapHelper: GameBananaType: Gamefile - Version: 1.8.24 - LastUpdate: 1612799479 + Version: 1.8.27 + LastUpdate: 1613580075 GameBananaId: 8458 - xxHash: [1f8ed9d85898efb8] - URL: https://gamebanana.com/mmdl/517775 + xxHash: [5ffd612f98f35a6d] + URL: https://gamebanana.com/mmdl/521728 Ezel's CC-Sides: GameBananaType: Map Version: 1.8.6 @@ -2423,10 +2486,10 @@ cursedthings: Sedis-D Sakinom: GameBananaType: Map Version: 1.0.0 - LastUpdate: 1613183679 + LastUpdate: 1613752283 GameBananaId: 214813 - xxHash: [65d58961688d6024] - URL: https://gamebanana.com/mmdl/519809 + xxHash: [c3317b3a22858b4e] + URL: https://gamebanana.com/mmdl/522459 ForkCity: GameBananaType: Wip Version: 0.0.1 @@ -2490,6 +2553,13 @@ Space Peak: GameBananaId: 208846 xxHash: [2bf075f6a9766ffd] URL: https://gamebanana.com/mmdl/500420 +Desorum: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613241347 + GameBananaId: 214831 + xxHash: [e5c23483e6c3ac7a] + URL: https://gamebanana.com/mmdl/520063 HitboxFixer: GameBananaType: Gamefile Version: 1.0.2 @@ -2511,6 +2581,13 @@ BlackholeHelper: GameBananaId: 213054 xxHash: [14e962d2fe8dc294] URL: https://gamebanana.com/mmdl/495923 +Chocoberries: + GameBananaType: Skin + Version: 1.0.0 + LastUpdate: 1613399024 + GameBananaId: 188229 + xxHash: [2d6078cb9c87d35f] + URL: https://gamebanana.com/mmdl/520828 No-Backpack Other-Self: GameBananaType: Skin Version: 1.0.2 @@ -2889,6 +2966,13 @@ Trolleste: GameBananaId: 212451 xxHash: [4977432a10f0f340] URL: https://gamebanana.com/mmdl/489025 +CyberSkyline: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613443228 + GameBananaId: 214894 + xxHash: [5b1e15de3825eaa4] + URL: https://gamebanana.com/mmdl/521116 DashPrologue: GameBananaType: Map Version: 2.0.1 @@ -2931,6 +3015,13 @@ EnterTheSun: GameBananaId: 49542 xxHash: [3ac1ae098ab307c6] URL: https://gamebanana.com/mmdl/407959 +Speleology: + GameBananaType: Map + Version: 1.0.0 + LastUpdate: 1613819070 + GameBananaId: 214964 + xxHash: [5cd0fd05fd5289aa] + URL: https://gamebanana.com/mmdl/522792 Solitude: GameBananaType: Map Version: '1.0' @@ -2968,11 +3059,11 @@ Badlands: URL: https://gamebanana.com/mmdl/500885 Ghost Blocks: GameBananaType: Map - Version: 1.0.1 - LastUpdate: 1605643618 + Version: 1.0.4 + LastUpdate: 1613522669 GameBananaId: 211580 - xxHash: [d1e0bbfdbbf2b780] - URL: https://gamebanana.com/mmdl/496478 + xxHash: [27902554908db25a] + URL: https://gamebanana.com/mmdl/521499 DisposableTheo: GameBananaType: Gamefile Version: 1.0.5 @@ -3059,25 +3150,25 @@ Unknown Mountain: URL: https://gamebanana.com/mmdl/495238 PolygonDreams: GameBananaType: Map - Version: '5.1' - LastUpdate: 1609672518 + Version: '5.2' + LastUpdate: 1613378334 GameBananaId: 201404 - xxHash: [332883f0323c107d] - URL: https://gamebanana.com/mmdl/505410 + xxHash: [df989e6c578f0241] + URL: https://gamebanana.com/mmdl/520745 Forsaken City AA-side: GameBananaType: Wip - Version: 0.4.0 - LastUpdate: 1613223571 + Version: 0.4.1 + LastUpdate: 1613379038 GameBananaId: 53281 - xxHash: [84bbdd34ea0fc9b5] - URL: https://gamebanana.com/mmdl/519965 + xxHash: [8b504a2a0ed28d8d] + URL: https://gamebanana.com/mmdl/520747 Birdeline: GameBananaType: Skin Version: 1.5.0 - LastUpdate: 1612045205 + LastUpdate: 1613663436 GameBananaId: 186581 - xxHash: [4153d73289e24ede] - URL: https://gamebanana.com/mmdl/513895 + xxHash: [70ce203a9f840998] + URL: https://gamebanana.com/mmdl/522096 DogMountain: GameBananaType: Map Version: 1.0.0 @@ -3155,13 +3246,27 @@ SSMQoLMod: GameBananaId: 13023 xxHash: [2a09a8f48018aaf8] URL: https://gamebanana.com/mmdl/505758 +Wolfy's garden decals: + GameBananaType: Gamefile + Version: 1.0.0 + LastUpdate: 1613690557 + GameBananaId: 15327 + xxHash: [2e33581aba06bac7] + URL: https://gamebanana.com/mmdl/522240 +Boosterblind: + GameBananaType: Skin + Version: 1.0.0 + LastUpdate: 1613671806 + GameBananaId: 188579 + xxHash: [cf683fd980955011] + URL: https://gamebanana.com/mmdl/522139 FrostHelper: GameBananaType: Gamefile - Version: 1.21.6 - LastUpdate: 1610395444 + Version: 1.22.3 + LastUpdate: 1613830710 GameBananaId: 9201 - xxHash: [fcdc029b26ab3c7a] - URL: https://gamebanana.com/mmdl/507316 + xxHash: [b3c86d534841addd] + URL: https://gamebanana.com/mmdl/522827 Madeline in Wonderland: GameBananaType: Map Version: NoVersion @@ -3228,10 +3333,10 @@ Donker's Mapping Contest Entry by RedBoule: T-Pose: GameBananaType: Skin Version: 1.0.0 - LastUpdate: 1612918380 + LastUpdate: 1613447332 GameBananaId: 187757 - xxHash: [74b116aeba809bce] - URL: https://gamebanana.com/mmdl/518396 + xxHash: [edc4376c56279ccb] + URL: https://gamebanana.com/mmdl/521135 SpringCollab2020Audio: GameBananaType: Map Version: 1.0.0 @@ -3563,11 +3668,11 @@ HardcoreMode: URL: https://gamebanana.com/mmdl/513553 AdventureHelper: GameBananaType: Gamefile - Version: 1.5.0 - LastUpdate: 1608215437 + Version: 1.5.1 + LastUpdate: 1613601588 GameBananaId: 9807 - xxHash: [3c08ef1274ea74b3] - URL: https://gamebanana.com/mmdl/501652 + xxHash: [ead8194da92a8230] + URL: https://gamebanana.com/mmdl/521836 TornadoValleyConcept: GameBananaType: Map Version: 1.0.0 @@ -3605,11 +3710,11 @@ B side The adventure of OI!: URL: https://gamebanana.com/mmdl/507259 AsparagiiDusk: GameBananaType: Map - Version: 1.1.0 - LastUpdate: 1612569103 + Version: 1.1.1 + LastUpdate: 1613597602 GameBananaId: 214334 - xxHash: [eaeb450bd9a29c09] - URL: https://gamebanana.com/mmdl/516609 + xxHash: [38983c9fda677a95] + URL: https://gamebanana.com/mmdl/521813 FullClearStamp: GameBananaType: Gui Version: 2.0.1 @@ -3619,11 +3724,11 @@ FullClearStamp: URL: https://gamebanana.com/mmdl/454047 PruebasDeBadeline: GameBananaType: Map - Version: 3.1.2 - LastUpdate: 1610156228 + Version: 3.1.3 + LastUpdate: 1613690568 GameBananaId: 207516 - xxHash: [91b181121efa6006] - URL: https://gamebanana.com/mmdl/506579 + xxHash: [536b1cd22ca7bb24] + URL: https://gamebanana.com/mmdl/522241 AvapXia's Super Dash Series: GameBananaType: Map Version: '1.1' @@ -3631,6 +3736,13 @@ AvapXia's Super Dash Series: GameBananaId: 209579 xxHash: [21bc1309c47825c7] URL: https://gamebanana.com/mmdl/462432 +DebugConsole: + GameBananaType: Tool + Version: 0.1.2 + LastUpdate: 1613634580 + GameBananaId: 6971 + xxHash: [a7ab4715d3794c6d] + URL: https://gamebanana.com/mmdl/521991 mastarscollabpart: GameBananaType: Map Version: '2.3' diff --git a/uploads/everestupdateexcluded.yaml b/uploads/everestupdateexcluded.yaml index 18b0943..8cfeddd 100755 --- a/uploads/everestupdateexcluded.yaml +++ b/uploads/everestupdateexcluded.yaml @@ -175,12 +175,6 @@ https://gamebanana.com/mmdl/414169: File https://gamebanana.com/mmdl/437888 has mod ID and is more recent https://gamebanana.com/mmdl/412450: File https://gamebanana.com/mmdl/413583 has same mod ID and is more recent -https://gamebanana.com/mmdl/432177: File https://gamebanana.com/mmdl/434250 has same - mod ID and is more recent -https://gamebanana.com/mmdl/409601: File https://gamebanana.com/mmdl/434250 has same - mod ID and is more recent -https://gamebanana.com/mmdl/409261: File https://gamebanana.com/mmdl/434250 has same - mod ID and is more recent https://gamebanana.com/mmdl/408170: File https://gamebanana.com/mmdl/408352 has same mod ID and is more recent https://gamebanana.com/mmdl/408167: File https://gamebanana.com/mmdl/408352 has same @@ -678,8 +672,6 @@ https://gamebanana.com/mmdl/484849: File https://gamebanana.com/mmdl/484962 has mod ID and is more recent https://gamebanana.com/mmdl/450361: File https://gamebanana.com/mmdl/485161 has same mod ID and is more recent -https://gamebanana.com/mmdl/447701: File https://gamebanana.com/mmdl/485381 has same - mod ID and is more recent https://gamebanana.com/mmdl/485492: "while parsing a block collection\n in 'reader',\ \ line 4, column 5:\n - Name: Everest\n ^\nexpected , but\ \ found '?'\n in 'reader', line 21, column 5:\n Version: 1.0.1\n ^\n\ @@ -892,8 +884,6 @@ https://gamebanana.com/mmdl/494754: File https://gamebanana.com/mmdl/501515 has mod ID and is more recent https://gamebanana.com/mmdl/501343: File https://gamebanana.com/mmdl/501634 has same mod ID and is more recent -https://gamebanana.com/mmdl/485381: File https://gamebanana.com/mmdl/501652 has same - mod ID and is more recent https://gamebanana.com/mmdl/497564: File https://gamebanana.com/mmdl/501686 has same mod ID and is more recent https://gamebanana.com/mmdl/480553: File https://gamebanana.com/mmdl/501686 has same @@ -906,8 +896,6 @@ https://gamebanana.com/mmdl/497802: File https://gamebanana.com/mmdl/502016 has mod ID and is more recent https://gamebanana.com/mmdl/489406: File https://gamebanana.com/mmdl/502635 has same mod ID and is more recent -https://gamebanana.com/mmdl/501752: File https://gamebanana.com/mmdl/503093 has same - mod ID and is more recent https://gamebanana.com/mmdl/501709: File https://gamebanana.com/mmdl/503899 has same mod ID and is more recent https://gamebanana.com/mmdl/504166: File https://gamebanana.com/mmdl/504187 has same @@ -942,8 +930,6 @@ https://gamebanana.com/mmdl/504379: File https://gamebanana.com/mmdl/504414 has mod ID and is more recent https://gamebanana.com/mmdl/499197: File https://gamebanana.com/mmdl/504465 has same mod ID and is more recent -https://gamebanana.com/mmdl/450175: File https://gamebanana.com/mmdl/504496 has same - mod ID and is more recent https://gamebanana.com/mmdl/497731: File https://gamebanana.com/mmdl/504896 has same mod ID and is more recent https://gamebanana.com/mmdl/501686: File https://gamebanana.com/mmdl/504907 has same @@ -954,8 +940,6 @@ https://gamebanana.com/mmdl/498418: File https://gamebanana.com/mmdl/505108 has mod ID and is more recent https://gamebanana.com/mmdl/504896: File https://gamebanana.com/mmdl/505122 has same mod ID and is more recent -https://gamebanana.com/mmdl/503093: File https://gamebanana.com/mmdl/505120 has same - mod ID and is more recent https://gamebanana.com/mmdl/504147: File https://gamebanana.com/mmdl/505549 has same mod ID and is more recent https://gamebanana.com/mmdl/500279: File https://gamebanana.com/mmdl/505559 has same @@ -1052,8 +1036,6 @@ https://gamebanana.com/mmdl/508002: File https://gamebanana.com/mmdl/508010 has mod ID and is more recent https://gamebanana.com/mmdl/508010: File https://gamebanana.com/mmdl/508011 has same mod ID and is more recent -https://gamebanana.com/mmdl/505120: File https://gamebanana.com/mmdl/508148 has same - mod ID and is more recent https://gamebanana.com/mmdl/507058: File https://gamebanana.com/mmdl/508292 has same mod ID and is more recent https://gamebanana.com/mmdl/408595: File https://gamebanana.com/mmdl/508323 has same @@ -1078,8 +1060,6 @@ https://gamebanana.com/mmdl/486422: File https://gamebanana.com/mmdl/511304 has mod ID and is more recent https://gamebanana.com/mmdl/510909: File https://gamebanana.com/mmdl/511607 has same mod ID and is more recent -https://gamebanana.com/mmdl/504274: File https://gamebanana.com/mmdl/510893 has same - mod ID and is more recent https://gamebanana.com/mmdl/504912: File https://gamebanana.com/mmdl/513019 has same mod ID and is more recent https://gamebanana.com/mmdl/513040: File https://gamebanana.com/mmdl/513361 has same @@ -1122,14 +1102,6 @@ https://gamebanana.com/mmdl/514442: File https://gamebanana.com/mmdl/517118 has mod ID and is more recent https://gamebanana.com/mmdl/510907: File https://gamebanana.com/mmdl/517336 has same mod ID and is more recent -https://gamebanana.com/mmdl/510893: File https://gamebanana.com/mmdl/517369 has same - mod ID and is more recent -https://gamebanana.com/mmdl/515624: File https://gamebanana.com/mmdl/517450 has same - mod ID and is more recent -https://gamebanana.com/mmdl/517646: File https://gamebanana.com/mmdl/517753 has same - mod ID and is more recent -https://gamebanana.com/mmdl/505798: File https://gamebanana.com/mmdl/517775 has same - mod ID and is more recent https://gamebanana.com/mmdl/517795: "java.lang.NullPointerException\n\tat com.max480.everest.updatechecker.DatabaseUpdater.parseEverestYamlFromZipFile(DatabaseUpdater.java:350)\n\ \tat com.max480.everest.updatechecker.DatabaseUpdater.updateDatabase(DatabaseUpdater.java:324)\n\ \tat com.max480.everest.updatechecker.DatabaseUpdater.loadPageModInfo(DatabaseUpdater.java:215)\n\ @@ -1148,8 +1120,6 @@ https://gamebanana.com/mmdl/484280: File https://gamebanana.com/mmdl/517885 has mod ID and is more recent https://gamebanana.com/mmdl/509293: File https://gamebanana.com/mmdl/518075 has same mod ID and is more recent -https://gamebanana.com/mmdl/517369: File https://gamebanana.com/mmdl/518086 has same - mod ID and is more recent https://gamebanana.com/mmdl/518063: File https://gamebanana.com/mmdl/518084 has same mod ID and is more recent https://gamebanana.com/mmdl/518142: "java.lang.NullPointerException\n\tat com.max480.everest.updatechecker.DatabaseUpdater.parseEverestYamlFromZipFile(DatabaseUpdater.java:350)\n\ @@ -1166,8 +1136,6 @@ https://gamebanana.com/mmdl/511553: File https://gamebanana.com/mmdl/518257 has mod ID and is more recent https://gamebanana.com/mmdl/517885: File https://gamebanana.com/mmdl/518390 has same mod ID and is more recent -https://gamebanana.com/mmdl/508148: File https://gamebanana.com/mmdl/518498 has same - mod ID and is more recent https://gamebanana.com/mmdl/476653: File https://gamebanana.com/mmdl/518541 has same mod ID and is more recent https://gamebanana.com/mmdl/518146: File https://gamebanana.com/mmdl/518598 has same @@ -1194,3 +1162,67 @@ https://gamebanana.com/mmdl/517850: File https://gamebanana.com/mmdl/519638 has mod ID and is more recent https://gamebanana.com/mmdl/517336: File https://gamebanana.com/mmdl/519942 has same mod ID and is more recent +https://gamebanana.com/mmdl/518086: File https://gamebanana.com/mmdl/520027 has same + mod ID and is more recent +https://gamebanana.com/mmdl/504274: File https://gamebanana.com/mmdl/520027 has same + mod ID and is more recent +https://gamebanana.com/mmdl/519942: File https://gamebanana.com/mmdl/520329 has same + mod ID and is more recent +https://gamebanana.com/mmdl/519875: File https://gamebanana.com/mmdl/520383 has same + mod ID and is more recent +https://gamebanana.com/mmdl/515624: File https://gamebanana.com/mmdl/520461 has same + mod ID and is more recent +https://gamebanana.com/mmdl/518498: File https://gamebanana.com/mmdl/520676 has same + mod ID and is more recent +https://gamebanana.com/mmdl/518952: File https://gamebanana.com/mmdl/521164 has same + mod ID and is more recent +https://gamebanana.com/mmdl/519020: File https://gamebanana.com/mmdl/521326 has same + mod ID and is more recent +https://gamebanana.com/mmdl/521326: File https://gamebanana.com/mmdl/521353 has same + mod ID and is more recent +https://gamebanana.com/mmdl/521356: "java.lang.NullPointerException\n\tat com.max480.everest.updatechecker.DatabaseUpdater.parseEverestYamlFromZipFile(DatabaseUpdater.java:391)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.updateDatabase(DatabaseUpdater.java:365)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.loadPageModInfo(DatabaseUpdater.java:256)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.loadPage(DatabaseUpdater.java:190)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.updateDatabaseYaml(DatabaseUpdater.java:44)\n\ + \tat com.max480.everest.updatechecker.Main.main(Main.java:49)\n" +https://gamebanana.com/mmdl/520836: File https://gamebanana.com/mmdl/521728 has same + mod ID and is more recent +https://gamebanana.com/mmdl/516609: File https://gamebanana.com/mmdl/521813 has same + mod ID and is more recent +https://gamebanana.com/mmdl/501652: File https://gamebanana.com/mmdl/521836 has same + mod ID and is more recent +https://gamebanana.com/mmdl/521950: "java.lang.NullPointerException\n\tat com.max480.everest.updatechecker.DatabaseUpdater.parseEverestYamlFromZipFile(DatabaseUpdater.java:391)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.updateDatabase(DatabaseUpdater.java:365)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.loadPageModInfo(DatabaseUpdater.java:256)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.loadPage(DatabaseUpdater.java:190)\n\ + \tat com.max480.everest.updatechecker.DatabaseUpdater.updateDatabaseYaml(DatabaseUpdater.java:44)\n\ + \tat com.max480.everest.updatechecker.Main.main(Main.java:49)\n" +https://gamebanana.com/mmdl/507316: File https://gamebanana.com/mmdl/522003 has same + mod ID and is more recent +https://gamebanana.com/mmdl/521993: File https://gamebanana.com/mmdl/522011 has same + mod ID and is more recent +https://gamebanana.com/mmdl/522011: File https://gamebanana.com/mmdl/522030 has same + mod ID and is more recent +https://gamebanana.com/mmdl/434250: File https://gamebanana.com/mmdl/522074 has same + mod ID and is more recent +https://gamebanana.com/mmdl/432177: File https://gamebanana.com/mmdl/522074 has same + mod ID and is more recent +https://gamebanana.com/mmdl/409601: File https://gamebanana.com/mmdl/522074 has same + mod ID and is more recent +https://gamebanana.com/mmdl/409261: File https://gamebanana.com/mmdl/522074 has same + mod ID and is more recent +https://gamebanana.com/mmdl/519613: File https://gamebanana.com/mmdl/522320 has same + mod ID and is more recent +https://gamebanana.com/mmdl/522322: File https://gamebanana.com/mmdl/522326 has same + mod ID and is more recent +https://gamebanana.com/mmdl/519591: File https://gamebanana.com/mmdl/522326 has same + mod ID and is more recent +https://gamebanana.com/mmdl/522003: File https://gamebanana.com/mmdl/522396 has same + mod ID and is more recent +https://gamebanana.com/mmdl/493300: File https://gamebanana.com/mmdl/522587 has same + mod ID and is more recent +https://gamebanana.com/mmdl/506456: File https://gamebanana.com/mmdl/522754 has same + mod ID and is more recent +https://gamebanana.com/mmdl/522396: File https://gamebanana.com/mmdl/522827 has same + mod ID and is more recent diff --git a/uploads/everestupdatenoyaml.yaml b/uploads/everestupdatenoyaml.yaml index 7f17214..1615bb3 100755 --- a/uploads/everestupdatenoyaml.yaml +++ b/uploads/everestupdatenoyaml.yaml @@ -27,4 +27,4 @@ 'https://gamebanana.com/mmdl/500880', 'https://gamebanana.com/mmdl/500881', 'https://gamebanana.com/mmdl/502812', 'https://gamebanana.com/mmdl/505488', 'https://gamebanana.com/mmdl/508911', 'https://gamebanana.com/mmdl/513256', 'https://gamebanana.com/mmdl/515629', 'https://gamebanana.com/mmdl/516033', 'https://gamebanana.com/mmdl/518242', - 'https://gamebanana.com/mmdl/518738'] + 'https://gamebanana.com/mmdl/518738', 'https://gamebanana.com/mmdl/520275'] diff --git a/uploads/modsearchdatabase.yaml b/uploads/modsearchdatabase.yaml index b6a0667..afe0897 100755 --- a/uploads/modsearchdatabase.yaml +++ b/uploads/modsearchdatabase.yaml @@ -1,3 +1,241 @@ +- GameBananaType: Map + GameBananaId: 214980 + Name: Crystal Garden + Authors: [Etpio, max480, DeathKontrol] + Description: Based on Gem Garden + Text: A map I have been working on for quite a while, Inspired by the Spring Collab + map "Gem Garden". I don't have more time to work on it so I wanted to package + the little I have made (4 screens) and release it here, there may be cheese. Difficulty + is Grandmaster + 2, probably red. + Likes: 0 + Views: 158 + Downloads: 6 +- GameBananaType: Map + GameBananaId: 214964 + Name: Speleology + Authors: [zalizaka] + Description: '' + Text: This is my first map, I just opened Ahorn and touched everything. I tried + my best to do something not to horrible to play but if it's garbage please tell + me I take every feedback :) + Likes: 1 + Views: 226 + Downloads: 9 +- GameBananaType: Skin + GameBananaId: 188579 + Name: Boosterblind + Authors: [Reaver of Souls] + Description: Accessibility is important! + Text: 'This mod gives symbols to boosters so they''re more easily distinguishable + for people with colorblindness. Boosters currently supported include: Green (Vanilla) + Red (Vanilla) Blue (Frost Helper) Gray (Frost Helper Yellow (Frost Helper) Wind + (Viv''s Helper) Variant (Viv''s Helper) Cryo (Jackal Helper) Purple (Vortex Helper) + Boosters Currently Unable to Support: Bumper (Crystalline Helper): Special XML + prevents reskinning Core (Jackal''s Helper): Special XML prevents reskinning Orange + (Viv''s Helper): Uses Wind Booster''s sprite with a color filter on it Pink (Viv''s + Helper): Uses Wind Booster''s sprite with a color filter on it' + Likes: 2 + Views: 290 + Downloads: 2 +- GameBananaType: Gamefile + GameBananaId: 15412 + Name: Xaphan Helper + Authors: [Xaphan67] + Description: '' + Text: This mod contain all the custom stuff used in The Secret of Celeste Mountain. + It add to the game many elements usefull for custom campaigns that want a metroidvania + feel. The entites contained in this helper currently cannot be used in others + maps, but will be in the near future. + Likes: 3 + Views: 880 + Downloads: 42 +- GameBananaType: Map + GameBananaId: 214937 + Name: Overclocking Demonstration + Authors: [Tiddly5] + Description: A tutorial for lesser known tech + Text: I recently found out about overclocking, which is not very well known tech + that I think can be applied in many situations. This is my first ever map, so + I hope it's a good demo and that you enjoy! + Likes: 1 + Views: 428 + Downloads: 21 +- GameBananaType: Map + GameBananaId: 214934 + Name: Crystal Caverns + Authors: [HollowNub] + Description: '' + Text: 'This is my second map! I worked very hard on it. (especially trying to package + it correctly this time) For some reason I didn''t put any strawberries and I am + a little bit sad about that so sorry D: I''m also not sure if I did the dependencies + correctly, so if there''s any problems with that please tell me :)' + Likes: 0 + Views: 444 + Downloads: 16 +- GameBananaType: Map + GameBananaId: 214925 + Name: Iris + Authors: [Jadeturtle, Cicero] + Description: Madeline takes on a smaller mountain to unwind after 2020. + Text: Here is my first map, Iris. The map takes place after farewell timewise, so + be aware of a few farewell spoilers. No advanced/intermediate tech is required + apart from a single wallbounce for a secret area. I aimed to make the difficulty + somewhere in between chapters 7,8, and 9. I hope you enjoy. There are 16 strawberries + plus a cassette (which has no b-side as of yet). There are also a few secrets + hidden in there as well. --------------- I promised myself at the start of the + year I would finally finish a map and submit it and here it is. I worked hard + to get this map done and looking good for the past month and its really satisfying + to get it up. Let me know if you have feedback on anything that might need fixing. + Thanks to my friend Cicero for helping me playtest the map. + Likes: 3 + Views: 566 + Downloads: 37 +- GameBananaType: Map + GameBananaId: 214866 + Name: Neon Metropolis + Authors: [Cabob, ThetaGC, bigkahuna443, Jackal.exe, Pupett, Anilmky -Nikko-, crowberry] + Description: Madeline explores a dazzling city with experimental machinery + Text: 'I was feeling a rush of creativity with some experimental entities, so after + a few games of Demon Crawl (a minesweeper roguelike), I decided to put this mod + together. I tried to make the A side feel like a challenge, yet more accessible + than some of my other maps. I hope you enjoy :) This mod includes: An A side and + a future B side probably 3 custom songs Custom assets by me, Crow, and Nikko New + custom mechanics This time around I was aiming for advanced difficulty. You need + basic tech like wavedashes and supers, as well as their reverse variants. The + map''s difficulty comes mostly from using the new entities. If I get around to + finishing the B-side I plan on making it much harder, up to grandmaster difficulty. + If anyone needs to contact me, my discord is Cabob#6566 I''d like to thank Theta, + Bigkahuna, Pupett, and Jakal for playtesting the mod. Really means a lot. I''d + also like to thank Nikko for the custom building stylegrounds and temple tileset, + and crow for the awesome animated pillars. All the music is from Demon Crawl, + as well as the map''s main inspiration. Song credits: Leve select theme: https://youtu.be/GBm4qABFIN4 + Chapter 1: A-side - https://youtu.be/fawHhjZEx8g B-Side - https://youtu.be/xD3IPyA7R1Q' + Likes: 5 + Views: 1718 + Downloads: 95 +- GameBananaType: Gamefile + GameBananaId: 15327 + Name: Garden Decal Set + Authors: [Wolfy, Skwq] + Description: '' + Text: A simple decal pack full of flowers and farming items :) + Likes: 0 + Views: 452 + Downloads: 12 +- GameBananaType: Map + GameBananaId: 214894 + Name: Cyber Skyline + Authors: [Yoshachobi7] + Description: Short Cyberpunk style map originally made for a mapping contest! + Text: 'Originally made this for a February mapping contest, unfortunately got rejected + for being too difficult. Doesn''t use any expert tech but usage of advanced tech + can be considered expert. Requires: (Reverse) Wavedashes Wallbouncing Throwable + Hovers Block Boosts? (wavedashing off zip movers) A few fastbubbles A couple of + fastfalling parts Dependencies: Everest Batteries 1.1.0 OutbackHelper 1.4.0 Maxhelpinghand + 1.12.5 FlaglinesAndSuch 1.4.5 CommunalHelper 1.6.0 CollabUtils2 1.3.8.1 AdventureHelper + 1.5.0 VivHelper 1.2.3 Sardine7 1.0.0 LunaticHelper 1.1.1' + Likes: 1 + Views: 641 + Downloads: 27 +- GameBananaType: Map + GameBananaId: 214889 + Name: SPRINT + Authors: [KAERRA, Cabob, Marcossanches, LIER0, max480, tobyaaa, JaThePlayer] + Description: An unusual celeste challenge map + Text: SPRINT is a short challenge map based on tight spring cancels and precise + dash timings. Although it only requires a few supers and wavedashes, the difficulty + of this map is quite high. There are no secrets to find and no extra collectibles, + so don't go looking for any. The soundtrack for this map was made by KAERRA [me] + and FMOD'd into the game by Cabob. + Likes: 6 + Views: 1863 + Downloads: 112 +- GameBananaType: Skin + GameBananaId: 188229 + Name: Chocoberries + Authors: [Reaver of Souls] + Description: Happy Valentine's Day! + Text: The berries of the game have been dipped in chocolate! (Sprites only) + Likes: 4 + Views: 455 + Downloads: 17 +- GameBananaType: Map + GameBananaId: 214852 + Name: Small sanctuary + Authors: [UsoltsevRoman] + Description: '' + Text: Small map. Difficulty - beginner. Enjoy the game. + Likes: 0 + Views: 470 + Downloads: 17 +- GameBananaType: Tool + GameBananaId: 6971 + Name: Celeste Debug Console + Authors: [rhelmot] + Description: Adds an interactive C# session debug command + Text: Install this mod and then type "cs" in the debug command prompt. The prompt + will be transformed into a full C# interactive shell. The main features missing + are a) multiline input and b) convenient access to private members, which may + or may not be implemented in the future. + Likes: 1 + Views: 388 + Downloads: 14 +- GameBananaType: Tool + GameBananaId: 6970 + Name: Ahorn Additives + Authors: [vitellary, coloursofnoise, lilybeevee] + Description: Some quality of life tools + Text: 'IMPORTANT: Read the README.txt inside the mod for usage instructions!!! This + is a mod that gives some convenient-to-access options in the Placements area of + Ahorn, such as one-use refills, so you don''t have to change the settings each + time you use it. Additionally, there are some customizable options, such as Jump + Throughs, so that, with a tiny bit of file editing, you can have easy customized + textures for a variety of things without needing to edit each time. No coding + knowledge is required: the README documents everything you need to do so that + it doesn''t take much time at all. I take suggestions! Please, feel free to ping + me @vitellary#1950 in the Celeste Discord Server, and I will try to add the option + for you. This even extends to making options for other modded entities, if they + don''t want to crowd their own helper''s options list. There is no everest.yaml, + to avoid accidental updating and overriding local changes. To install, download + manually and place in Celeste/Mods, then see README.txt for further instructions. + Mods referenced by plugins (plugins won''t work unless the respective mod is installed): + Frost Helper by JaThePlayer max480''s Helping Hand by max480 Vortex Helper by + catapillie and pixelator Viv''s Helper by Viv Communal Helper by Bio, catapillie, + coloursofnoise, Viv, and Nikko' + Likes: 0 + Views: 408 + Downloads: 16 +- GameBananaType: Map + GameBananaId: 214807 + Name: Quill + Authors: + - !!binary |- + WnVyY3XDhcKb + - EXOK team + Description: Very short map focused on feathers and bumpers. Help Madeline get out + of a weird cave + Text: This is Quill, the first map I've ever made for any game. Hope you'll enjoy + it. The main gameplay focus is on bumpers and feathers. That also means bumper + boosts are a semi-required tech in few spots to proceed. The difficulty is about + low-end intermediate. Keep in mind that some rooms have more than 1 intended way + of beating them The map itself is very short (10-ish rooms), with a few berries, + but no cassette (so also no B-side). There is no story or dialogue. If you have + any reports/questions, you can post it here or reach me on Discord. + Likes: 1 + Views: 459 + Downloads: 11 +- GameBananaType: Map + GameBananaId: 214831 + Name: Mirror Reflection + Authors: [FishBulbish, Mikeadon3] + Description: '' + Text: This is my first map. It combines various mechanics from chapters 5 and 6 + along with modified variants of these mechanics. Very little traditional tech + is used, however I still consider the map to be of intermediate difficulty. Any + feedback is appreciated. + Likes: 0 + Views: 431 + Downloads: 12 - GameBananaType: Skin GameBananaId: 188074 Name: Bird replaced to granny @@ -6,8 +244,8 @@ Text: 'A skinmod inspired by Coffe #5594(discord) and it replaces granny with the bird' Likes: 0 - Views: 86 - Downloads: 2 + Views: 513 + Downloads: 3 - GameBananaType: Map GameBananaId: 214818 Name: Dreamless Metro @@ -15,9 +253,9 @@ Description: Epic map by VectorWD Text: My first map is finally here. I went through a huge mess by making this but I think I did a pretty good job. Have fun. - Likes: 1 - Views: 136 - Downloads: 4 + Likes: 4 + Views: 534 + Downloads: 28 - GameBananaType: Map GameBananaId: 214815 Name: I Super Ultra Love You @@ -33,9 +271,9 @@ -Demohypers -Dreamgrabs I sincerely hope you love this map as much as I do! My main focus was making fun, fluid gameplay so hopefully it feels good to play. Lots of Love, Alisticious <3 p.s. I apologize in advance for the moon berry ;)' - Likes: 0 - Views: 165 - Downloads: 7 + Likes: 2 + Views: 1704 + Downloads: 80 - GameBananaType: Map GameBananaId: 214813 Name: Kcap Sedis-D Eht @@ -47,11 +285,11 @@ Chapter just Backwards are - So why not making the Sedis-D. I tried my best to make it less Jank but not editing that much the same time and I will say that worked - They some very janky stuff in there but in never stays unfair all the - time Required Movement: Demodashes Cornerboost Spiketech Cornerjump/kick Wavedashes - Hyper Ultra and every other Tech thats already required in 9d' - Likes: 1 - Views: 123 - Downloads: 6 + time Required Movement: Demodashes and 9d Tech Difficulty: Free: Eugolorp Easy: + D5, Eugolipe Harder D2 Something: D3 Insane: D7 Cornerjumphell: D1' + Likes: 2 + Views: 666 + Downloads: 19 - GameBananaType: Map GameBananaId: 214800 Name: Foe-En Monolith @@ -70,9 +308,9 @@ Rooms 9 Inline Strawberries A Goldenberry Crystal Heart Fun Kevin Gameplay LOTM + Rainbow Aesthetics Required/Optional Tech Everything that''s italicized is not required, but may be useful. Wall Boosts Wave Dashes Extended Hypers Supers' - Likes: 4 - Views: 824 - Downloads: 40 + Likes: 8 + Views: 2259 + Downloads: 109 - GameBananaType: Tool GameBananaId: 6968 Name: Ogmo Project Compiler @@ -87,14 +325,14 @@ foreground and background tilesets -- Many (but not all) entities. -- Stylegrounds -- Moving rooms around using Celeste''s built in debug menu The ogmo project file is in the compiler''s zip folder. Download the Ogmo Editor: link' - Likes: 1 - Views: 786 - Downloads: 26 + Likes: 4 + Views: 1448 + Downloads: 61 - GameBananaType: Map GameBananaId: 214763 Name: The Speed-Side Pack (WIP) - Authors: [Infinite_Twelve, coffe789, Reaver of Souls, coloursofnoise, max480, '0x0ade', - Cruor, Vexatos] + Authors: [Infinite_Twelve, coffe789, Reaver of Souls, coloursofnoise, max480, Cruor, + MunTheory, KaydenFox, '0x0ade', Vexatos] Description: A speedy remix of every map. (WIP) Text: 'Ever think Celeste was a little too slow? Well, well, well, welcome to the Speed-Sides. Non-Stop Speed, Non-Stop Fun, Non-Stop Dying with the Golden Berry @@ -104,8 +342,8 @@ Hidden Berry in each Level Golden Strawberries for you people looking to suffer Secret Debug Room A 10th level (Center of the Speedverse)' Likes: 3 - Views: 727 - Downloads: 24 + Views: 1143 + Downloads: 42 - GameBananaType: Map GameBananaId: 214758 Name: Nub's Gardens @@ -114,8 +352,8 @@ Text: This is the first map that I am publishing, I'm not 100% sure if I packaged it correctly so if there's any problems let me know so I can try to fix them :) Likes: 0 - Views: 635 - Downloads: 39 + Views: 776 + Downloads: 53 - GameBananaType: Map GameBananaId: 214756 Name: The Fall @@ -124,17 +362,17 @@ Text: My second map, Spent about a day on it. There are 7 strawberries to collect and when you do so, you can unlock a secret area where the crystal heart is hiding. Likes: 2 - Views: 364 - Downloads: 17 + Views: 469 + Downloads: 26 - GameBananaType: Skin GameBananaId: 187757 Name: T-Poseline Authors: [Reaver of Souls] Description: Assert your dominance. - Text: Everybody T-Poses. That's it. - Likes: 1 - Views: 722 - Downloads: 10 + Text: Everybody T-Poses. That's it. Only affects gameplay sprites. + Likes: 4 + Views: 1255 + Downloads: 19 - GameBananaType: Map GameBananaId: 214731 Name: Breath @@ -145,8 +383,8 @@ linear map. Requires knowledge of supers, ultras, bunny hops. Thanks to WhiskeyJack and Sexy Pencil for the playtesting! Likes: 1 - Views: 818 - Downloads: 52 + Views: 1084 + Downloads: 90 - GameBananaType: Gamefile GameBananaId: 14961 Name: Watchtower Tax @@ -157,9 +395,9 @@ With this mod you can automate this excessively tedious process. Watchtower Tax will kill you automatically whenever you stop using one of those pesky vanilla in-game cheat engines! Added bonus screen wipe for extra effect. - Likes: 1 - Views: 338 - Downloads: 10 + Likes: 2 + Views: 521 + Downloads: 18 - GameBananaType: Map GameBananaId: 214716 Name: Peelsa @@ -174,8 +412,8 @@ B-side Tape (no actual B-side yet) and a Golden Strawberry! (as well as an easter egg or two along the way)' Likes: 0 - Views: 202 - Downloads: 6 + Views: 257 + Downloads: 16 - GameBananaType: Map GameBananaId: 214711 Name: Changge Pao @@ -190,12 +428,13 @@ to WEGFan#1440 and Nanami Chiaki#3164! Feel free to ping them if you have any suggestions. The mod requires Chained Ultra and Demohyper, overall difficulty could be Expert hard to Grandmaster medium, so it is NOT recommended for beginners. - Have fun! Note: Recommends to play in Japanese. Additional note by uploader: The - mapmaker said he was intended to not make the covers to leave full imagination - to the players. Whether you believe it or not, I don''t believe it anyway lmao.' + Have fun! Music list: https://pastebin.com/VzZev6E3 Note: Recommends to play in + Japanese. Additional note by uploader: The mapmaker said he was intended to not + make the covers to leave full imagination to the players. Whether you believe + it or not, I don''t believe it anyway lmao.' Likes: 3 - Views: 1343 - Downloads: 51 + Views: 1759 + Downloads: 94 - GameBananaType: Map GameBananaId: 214709 Name: Project Tea makes a map @@ -203,8 +442,8 @@ Description: Cool map by project tea Text: I make a map, that's it. Likes: 0 - Views: 241 - Downloads: 18 + Views: 303 + Downloads: 25 - GameBananaType: Skin GameBananaId: 187687 Name: Phoneline skinmod @@ -213,8 +452,8 @@ Text: replaced dialog portraits and in-game sprite with madeline carrying a phone enjoy being quibble Likes: 0 - Views: 388 - Downloads: 14 + Views: 574 + Downloads: 18 - GameBananaType: Gamefile GameBananaId: 14914 Name: More Pie Endings @@ -228,23 +467,21 @@ Berries Ending (175-201 berries) - Golden Pie Ending ft. Theo chipping his tooth (202 berries)' Likes: 6 - Views: 2787 - Downloads: 121 + Views: 3406 + Downloads: 166 - GameBananaType: Map GameBananaId: 214687 Name: Dreamy trials Authors: [Astraxel, Blue] - Description: Small beginner map featuring dream blocks + Description: Beginner map featuring dream blocks Text: Hello ! This is my very first map, featuring a few rooms with a beginner gameplay - based on dream blocks. There are currently 5 strawberries to collect as well :) - I hope you like it, and don't hesitate to comment on the good and bad parts of - the map ;) As suggested in the comments, I added a golden strawberry. More rooms, - B-side and C-side are in the process of creation ! You can get an idea of the - map by playing it now, but I will largely expand it in a few days, so stay tuned - ! + based on dream blocks. The map has about 20 rooms of increasing difficulty, but + doesn't require any tech more advanced than beginner. The map also features 11 + strawberries and a cassette for a B-side (not implemented yet). I hope you enjoy + it, thanks a lot for all the feedback on any bugs, part you like or dislike :) Likes: 5 - Views: 687 - Downloads: 27 + Views: 949 + Downloads: 41 - GameBananaType: Wip GameBananaId: 53281 Name: Forsaken City AA-side (WIP) @@ -254,34 +491,42 @@ on the challenge of remaking Celeste. The AA-sides are literally the normal A-sides, with the same ideas/elements found in each unique room, but made a little harder. (I know, this is literally another version of a "Celeste but harder", but trust - me, this one will be a little different) With the AA-sides I''m trying to keep - the same feels as the normal A-sides, like when a room only has spikes and crumble - block I try to keep just those elements in the AA-side version of the room as - well (with the exception of when a room doesn''t have spikes, making a room hard - without using spikes is hard lol), and also make the rooms look similar to the - originals, but still adding my own unique stuff to make the rooms a bit harder - and hopefully more unique, not just a copy from the A-sides with only a few extra - harder elements added. This page only features The AA-side for Forsaken City (1AA), - and will only include 1AA. I will make more AA-sides (obviously going through - all the chapters in order), but I first want to make sure everything is working - fine, and hopefully gather feedback for 1AA, and then depending on how everything - goes I will continue with the other AA-sides once 1AA is 100% done, and I will - probably make a seperate "Lucy''s AA-sides" page for that, which I will update - with new maps once they''re finished, I won''t make seperate pages for each AA-side - probably, unless that works better idk. So, in conclusion, Forsaken City AA-side - features: Remade Forsaken City A-side Rooms looking similar to 1A, with more unique - stuff added Strawberries! (will be added later) Golden Strawberry A seperate Winged - Golden Strawberry challenge with new rooms specifically designed around not dashing - (will be added later) A Casette Tape used to unlock BA(or BB)-sides (will be added - later, probably won''t come until I finish all AA-sides) Tech required in Forsaken - City AA-side: Wavedash Hyperdash Superdash Spiketech Wallbounce Neutral jumps - Reverse hyperdash Zipboost I hope you''ll enjoy playing :) Feedback is appreciated, - especially since this is still my first map and because the map still isn''t even - close to being done. You can also message me on Discord if you wanna tell me something: - PotatoLucy#2003. Or you can also just ping me in the Celestecord.' - Likes: 0 - Views: 556 - Downloads: 19 + me, this one will be a little different). Also, the AA-sides are meant to be like + an extra challenge after completing the game, so it will expect you to know tech + like hyperdashes and wallbounces and it won''t be taught in this map (unless people + really want me to but birds for that in here). The AA-sides will also include + other tech not taught in the normal game, but it will teach that tech to keep + it fair. And each AA-side will also have one certain new tech that will mostly + be used in that AA-side, like how 1AA has a lot of supers. With the AA-sides I''m + trying to keep the same feels as the normal A-sides, like when a room only has + spikes and crumble block I try to keep just those elements in the AA-side version + of the room as well (with the exception of when a room doesn''t have spikes, making + a room hard without using spikes is hard lol), and also make the rooms look similar + to the originals, but still adding my own unique stuff to make the rooms a bit + harder and hopefully more unique, not just a copy from the A-sides with only a + few extra harder elements added. This page only features The AA-side for Forsaken + City (1AA), and will only include 1AA. I will make more AA-sides (obviously going + through all the chapters in order), but I first want to make sure everything is + working fine, and hopefully gather feedback for 1AA, and then depending on how + everything goes I will continue with the other AA-sides once 1AA is 100% done, + and I will probably make a seperate "Lucy''s AA-sides" page for that, which I + will update with new maps once they''re finished, I won''t make seperate pages + for each AA-side probably, unless that works better idk. So, in conclusion, Forsaken + City AA-side features: Remade Forsaken City A-side Rooms looking similar to 1A, + with more unique stuff added Strawberries! (won''t be included until full release + of 1AA-8AA to give more development time to those levels) Golden Strawberry A + seperate Winged Golden Strawberry challenge with new rooms specifically designed + around not dashing (same as strawberries) A Casette Tape used to unlock BA(or + BB)-sides (same as strawberries, though probably after strawberries because I + only wanna put them in for when I finish the BA/BB-sides) Tech required in Forsaken + City AA-side: Wavedash Hyperdash Superdash (taught) 5jump (taught) Wallbounce + Zipboost I hope you''ll enjoy playing :) Feedback is appreciated, especially since + this is still my first map and because the map still isn''t even close to being + done. You can also message me on Discord if you wanna tell me something: PotatoLucy#2003. + Or you can also just ping me in the Celestecord.' + Likes: 1 + Views: 822 + Downloads: 28 - GameBananaType: Map GameBananaId: 214680 Name: Spacejam @@ -292,8 +537,8 @@ Longer version or a longer map all together soon Probably, this first experiance was a lot of Fun. Try getting a good time on this one ;) Likes: 0 - Views: 495 - Downloads: 17 + Views: 587 + Downloads: 23 - GameBananaType: Map GameBananaId: 214673 Name: Ferocious Sanctuary+ @@ -321,8 +566,8 @@ Note: Even though you think there might be a weird bug, I can assure you with a high degree of certainty that you are mistaken. Please seek employment' Likes: 6 - Views: 3356 - Downloads: 139 + Views: 3921 + Downloads: 191 - GameBananaType: Map GameBananaId: 214665 Name: straightflychallenge.bin @@ -330,8 +575,8 @@ Description: lmfao Text: greatest map of all time (idea by cr33pycat) Likes: 1 - Views: 306 - Downloads: 6 + Views: 385 + Downloads: 8 - GameBananaType: Skin GameBananaId: 187529 Name: Bird Mod @@ -341,8 +586,8 @@ Amazon White Cockatoo Cinnamon Cockatiel Feel free to suggest any bird you would like to be added in a future update in the comments or on discord (pro banana#9368)' Likes: 0 - Views: 348 - Downloads: 17 + Views: 541 + Downloads: 27 - GameBananaType: Map GameBananaId: 214637 Name: Forsaken City E-Side++ @@ -350,8 +595,8 @@ Description: Don't golden this Text: Is forsaken city e-side+ too easy for you Try forsaken city e-side++ Likes: 0 - Views: 504 - Downloads: 16 + Views: 602 + Downloads: 21 - GameBananaType: Gamefile GameBananaId: 14782 Name: Donk Helper @@ -361,8 +606,8 @@ mod! More coming soon possibly, so be patient. Feel free to mess with options, have fun! Likes: 1 - Views: 775 - Downloads: 34 + Views: 864 + Downloads: 51 - GameBananaType: Map GameBananaId: 214596 Name: Infinite Farewell @@ -370,8 +615,8 @@ Description: A hard map (kinda.) Text: A map that's somewhat difficult. (Post Farewell) Likes: 2 - Views: 1184 - Downloads: 29 + Views: 1327 + Downloads: 38 - GameBananaType: Map GameBananaId: 214583 Name: 'MareLine: Far away from Summit' @@ -384,8 +629,8 @@ and no dash levels exist. There is also a moon berry which needs more techniques (and no extra red strawberries).' Likes: 1 - Views: 397 - Downloads: 30 + Views: 563 + Downloads: 34 - GameBananaType: Wip GameBananaId: 53213 Name: Lani's Trek (Celeste Classic 2 remade in Celeste) @@ -397,20 +642,18 @@ hook mod, but huge shoutouts to them for working on porting the mechanic over. I'll probably release this once that mod is finished. Likes: 3 - Views: 672 + Views: 737 Downloads: 0 - GameBananaType: Map GameBananaId: 214560 Name: '"Downpour"' - Authors: [Paxtonnnn, AVirusNamedToast] + Authors: [Paxtonnnn, AVirusNamedToast, awheyaway] Description: '' - Text: 6 strawberries, 1 crystal heart and 1 cassette tape. (And a B-Side sometime - in the future! Probably.) This is my first map, so feedback is highly appreciated! - And if you're wondering who 'Toast' is, he's a friend who I first sent this map - to. + Text: 6 strawberries, 1 crystal heart, 1 cassette tape and a B-Side! This is my + first map, so feedback is highly appreciated! Likes: 1 - Views: 797 - Downloads: 43 + Views: 998 + Downloads: 68 - GameBananaType: Map GameBananaId: 214553 Name: Midnight @@ -423,8 +666,8 @@ Celestecord, feel free to give any feedback as always. I''ve put a ton of hard work and effort into this over the last two months, please enjoy! :)' Likes: 4 - Views: 2026 - Downloads: 123 + Views: 2203 + Downloads: 153 - GameBananaType: Skin GameBananaId: 187051 Name: Cursed... things @@ -434,8 +677,8 @@ jelly from farewell madeline refills???? madeline jelly granny replaced by badeline (original sprite spoopy)' Likes: 1 - Views: 575 - Downloads: 15 + Views: 814 + Downloads: 20 - GameBananaType: Map GameBananaId: 214529 Name: Off Trail @@ -446,8 +689,8 @@ difficulty as some of the base-game chapters and can be done without tech up until the C-side. There are also a lot of tech based speedrunning routes included. Likes: 3 - Views: 1071 - Downloads: 41 + Views: 1184 + Downloads: 51 - GameBananaType: Map GameBananaId: 214508 Name: Ruined Site @@ -457,8 +700,8 @@ and a B side, each with 3 checkpoints. 13 berries, 2 crystal hearts, 3 bonus secrets and a cassette room. Likes: 2 - Views: 619 - Downloads: 37 + Views: 654 + Downloads: 47 - GameBananaType: Map GameBananaId: 214505 Name: CMgv @@ -468,8 +711,8 @@ not recommend or condone people playing this map. I don't recommend playing this map either. Likes: 0 - Views: 401 - Downloads: 1 + Views: 451 + Downloads: 2 - GameBananaType: Map GameBananaId: 214500 Name: 3C Buffed @@ -486,8 +729,8 @@ because A. more than just extra cycles are present, and B. garbage versions imply the maps are inherently bad Likes: 0 - Views: 326 - Downloads: 5 + Views: 346 + Downloads: 6 - GameBananaType: Map GameBananaId: 214474 Name: Madeline Gets A Call @@ -499,8 +742,8 @@ are pretty good at using the jellyfish and dashing this level would be pretty easy and hopefully fun. :) Likes: 2 - Views: 524 - Downloads: 13 + Views: 594 + Downloads: 16 - GameBananaType: Map GameBananaId: 214496 Name: Geode Gauntlet @@ -511,8 +754,8 @@ difficulty is around 6B with minor use of tech to clear (dream block jump, wallbounce, hyperdash) Only around 10 rooms, but also 10 strawberries. Likes: 2 - Views: 375 - Downloads: 13 + Views: 418 + Downloads: 16 - GameBananaType: Map GameBananaId: 214495 Name: Jelly Factory @@ -523,9 +766,9 @@ about 3 months and spent a lot of time polishing the gameplay and deco. Features : 34 Gameplay Rooms 0 Strawberries A cassette and a crystal heart puzzle Great custom music and art Love, work and dedication. Hope you like it!' - Likes: 5 - Views: 2688 - Downloads: 103 + Likes: 6 + Views: 2899 + Downloads: 126 - GameBananaType: Skin GameBananaId: 186879 Name: Granny is Sans and Theo has Drip @@ -533,8 +776,8 @@ Description: Something's not right... Text: The name just says it all Likes: 2 - Views: 842 - Downloads: 31 + Views: 1075 + Downloads: 42 - GameBananaType: Skin GameBananaId: 186846 Name: Angy Feesh @@ -542,8 +785,8 @@ Description: Not sure what you said but the pufferfish didnt like it Text: Simple skin to make the pufferfish be angy as hecc Likes: 1 - Views: 441 - Downloads: 15 + Views: 485 + Downloads: 20 - GameBananaType: Map GameBananaId: 214456 Name: Ultra Processing @@ -559,8 +802,8 @@ (See my previous map Error404) - Other Generic Techs Difficulty: Expert Red BGM: Blast Processing by Waterflame Have fun playing this map~' Likes: 4 - Views: 1184 - Downloads: 51 + Views: 1283 + Downloads: 56 - GameBananaType: Tool GameBananaId: 6950 Name: Ahorn Move Room Tool @@ -573,8 +816,8 @@ for "filler" rooms that do not have gameplay. Also lets you re-order the Tools list if for example you prefer to keep Selection at the bottom.' Likes: 6 - Views: 2171 - Downloads: 64 + Views: 2524 + Downloads: 89 - GameBananaType: Map GameBananaId: 214436 Name: Ultra Hell @@ -591,8 +834,8 @@ ago mostly but hopefully still brings some exciting fun ideas to the table for you all. Pretty minor dependencies and now Everest handles getting them. Likes: 5 - Views: 3003 - Downloads: 125 + Views: 3102 + Downloads: 134 - GameBananaType: Gamefile GameBananaId: 14399 Name: Relay Commands @@ -613,8 +856,8 @@ as with set_progress; use a ''b'' after the chapter number to specify a b-side (so ''9b'' for Core b) set_deaths X - sets total death count to X' Likes: 0 - Views: 445 - Downloads: 7 + Views: 522 + Downloads: 9 - GameBananaType: Map GameBananaId: 214421 Name: Alt Forsaken City @@ -624,8 +867,8 @@ I'm still learning how to add dialog so it's broken atm I might have it down by Golden Ridge who knows lol the gameplay is solid tho in my opinion. Likes: 0 - Views: 576 - Downloads: 29 + Views: 647 + Downloads: 31 - GameBananaType: Skin GameBananaId: 186581 Name: Tutorial Bird Skinmod @@ -634,9 +877,9 @@ Text: Madeline and Bird switch places, a Cursed Skinmod that features lots of Jank. (Featuring Flying Madeline) This mod isnt fully finished, you may find some missing animations (dont mind the baldeline) - Likes: 14 - Views: 2810 - Downloads: 93 + Likes: 16 + Views: 3265 + Downloads: 111 - GameBananaType: Skin GameBananaId: 186530 Name: Cat Ear Binos @@ -644,8 +887,8 @@ Description: Nya~ Text: Adds cat ears to binoculars because cat ears make everything better. Likes: 4 - Views: 829 - Downloads: 41 + Views: 949 + Downloads: 68 - GameBananaType: Map GameBananaId: 214364 Name: Farewell Plus @@ -664,8 +907,8 @@ since they''re the same as in the original. (Pause -> Skip Cutscene) As usual, the Changelog can be found inside the .zip file. Good luck! :3' Likes: 14 - Views: 5330 - Downloads: 183 + Views: 5619 + Downloads: 198 - GameBananaType: Gamefile GameBananaId: 14237 Name: Original Flag Sound @@ -674,7 +917,7 @@ Text: This mod replaces the vanilla summit flag sound with the in-dev one, mentioned during the 3rd anniversary 100% relay stream. Likes: 3 - Views: 1061 + Views: 1126 Downloads: 9 - GameBananaType: Map GameBananaId: 214334 @@ -694,8 +937,8 @@ climbing - which is generally ok for me but this cheese was unfun and broke the flow of these rooms, so I decided to take neutral climbing out.' Likes: 3 - Views: 1538 - Downloads: 49 + Views: 1864 + Downloads: 60 - GameBananaType: Map GameBananaId: 214331 Name: Complimentary Ice Map @@ -707,8 +950,8 @@ require things like demo dashes and ice jumps. There is also a Heart Room. This room has been dubbed the snolls room. Not for the winter collab. Likes: 4 - Views: 1218 - Downloads: 29 + Views: 1251 + Downloads: 33 - GameBananaType: Map GameBananaId: 214330 Name: The cave of bubbles @@ -720,8 +963,8 @@ wall bounce And in the advanced section: - Bubble assisted ultra (not sure if it has an official name) - Reverse bubble hyper and super - Ultra - Neutral jump' Likes: 3 - Views: 1074 - Downloads: 30 + Views: 1181 + Downloads: 36 - GameBananaType: Gamefile GameBananaId: 14175 Name: '[Cursed]Needle Helper' @@ -751,8 +994,8 @@ you have fun and do some experiments with this helper:) (Waiting for another I wanna Atone the Flower remake╰( ͡° ͜ʖ ͡° )つ)' Likes: 0 - Views: 836 - Downloads: 13 + Views: 870 + Downloads: 19 - GameBananaType: Map GameBananaId: 214310 Name: Starter @@ -761,8 +1004,8 @@ Text: 'A very small map based on Forsaken city. Relatively easy to complete. Basic techs are needed for completion. Berry count: 8 Golden berry is added. Good luck!' Likes: 1 - Views: 1308 - Downloads: 37 + Views: 1343 + Downloads: 39 - GameBananaType: Map GameBananaId: 214306 Name: 1A_Garbage_Version @@ -773,8 +1016,8 @@ a lot of effort). Most of the intended solutions start by moving immediately after respawning Likes: 1 - Views: 577 - Downloads: 30 + Views: 604 + Downloads: 34 - GameBananaType: Map GameBananaId: 214299 Name: Green Valley @@ -790,8 +1033,8 @@ Dm on discord or just comment on this page if u find anything that i should fix. Crankz#8225' Likes: 2 - Views: 987 - Downloads: 63 + Views: 1027 + Downloads: 67 - GameBananaType: Wip GameBananaId: 53076 Name: Shader (Effect) Helper @@ -811,8 +1054,8 @@ your game. It is expected to be a comma separated list of shaders. For example, with the default shaders in ShaderHelper, you could do: "shaderhelper/graysscaleeffect,shaderhelper/testshader2".' Likes: 4 - Views: 935 - Downloads: 46 + Views: 975 + Downloads: 50 - GameBananaType: Map GameBananaId: 214004 Name: iamdadbod New Year's Contest 2021 @@ -831,8 +1074,8 @@ information or would like to participate in future contests, join the iamdadbod Discord server! Likes: 7 - Views: 7998 - Downloads: 250 + Views: 8697 + Downloads: 276 - GameBananaType: Map GameBananaId: 214238 Name: Abyss @@ -846,8 +1089,8 @@ Knight Resting Grounds - Hollow Knight Dimension - Creo Basic information: ~65 rooms long 11 berries Difficulty - Low intermediate -> Mid-Expert' Likes: 7 - Views: 2407 - Downloads: 105 + Views: 2646 + Downloads: 115 - GameBananaType: Skin GameBananaId: 185817 Name: Mikuline @@ -858,8 +1101,8 @@ to manually edit 500 sprites✨ ✨Strange death animations✨ This mod is currently unfinished, and there may be graphical bugs (including the ones mentioned above).' Likes: 2 - Views: 1402 - Downloads: 97 + Views: 1805 + Downloads: 118 - GameBananaType: Map GameBananaId: 214179 Name: Madeline Gets Her Keys @@ -867,8 +1110,8 @@ Description: Her car was locked Text: This is so cool guys (This is my first map, sorry if it's bad) Likes: 2 - Views: 645 - Downloads: 44 + Views: 677 + Downloads: 49 - GameBananaType: Skin GameBananaId: 185782 Name: Madeline Defies Gravity @@ -876,8 +1119,8 @@ Description: Screw gravity! Text: Madeline has had enough of gravity and has decided to walk up walls instead. Likes: 2 - Views: 1196 - Downloads: 50 + Views: 1394 + Downloads: 56 - GameBananaType: Map GameBananaId: 214174 Name: Flinch's One Screen Challenge @@ -889,7 +1132,7 @@ over the weekend, and decided it was worth putting here on gamebanana. It's not a particularly long screen, but should be a pretty good challenge. Good Luck! Likes: 1 - Views: 590 + Views: 604 Downloads: 31 - GameBananaType: Gamefile GameBananaId: 13969 @@ -903,8 +1146,8 @@ There are two added languages - The regular McLeste one and the 'soap' edition, which removes swears, you could also call this the "boring version." Likes: 3 - Views: 1505 - Downloads: 85 + Views: 1628 + Downloads: 93 - GameBananaType: Map GameBananaId: 214158 Name: Celestial Resort B-Side Dashless @@ -912,8 +1155,8 @@ Description: AKA Celestial Resort B-Side but BAD Text: I have no regrets Likes: 1 - Views: 822 - Downloads: 14 + Views: 851 + Downloads: 18 - GameBananaType: Map GameBananaId: 214152 Name: Ultra Garbage @@ -922,8 +1165,8 @@ Text: My first map, its as short as a C Side. As the title suggests, its an ultra map and its complete garbage. Enjoy! Likes: 1 - Views: 731 - Downloads: 12 + Views: 773 + Downloads: 14 - GameBananaType: Map GameBananaId: 214148 Name: Anubi @@ -946,8 +1189,8 @@ the Celeste community for bringing awesome helpers! If you have some feedback, or find anything wrong with the map, please let me know. I hope you enjoy!' Likes: 14 - Views: 5209 - Downloads: 229 + Views: 5540 + Downloads: 255 - GameBananaType: Gamefile GameBananaId: 13920 Name: Alternate Farewell (Golden) Ending @@ -958,8 +1201,8 @@ ending cutscenes involving Granny and Theo to something a bit more relevant for after you get the golden strawberry for this level. Likes: 1 - Views: 742 - Downloads: 13 + Views: 1028 + Downloads: 15 - GameBananaType: Gamefile GameBananaId: 13902 Name: Femto Helper @@ -981,8 +1224,8 @@ If you encounter any issues with the helper, please contact me via Discord: Marcossanches#3110, and I''ll try fixing it in the next update!' Likes: 5 - Views: 1232 - Downloads: 46 + Views: 1405 + Downloads: 53 - GameBananaType: Map GameBananaId: 214070 Name: Odessa's Playground @@ -994,8 +1237,8 @@ hell with it! I hope you enjoy and I'm always happy to hear feedback. Maybe someday I'll add more, who knows? Likes: 7 - Views: 1615 - Downloads: 75 + Views: 1650 + Downloads: 78 - GameBananaType: Map GameBananaId: 214062 Name: Dog Mountain @@ -1005,8 +1248,8 @@ no clue I made this all in one day so don't go in expecting anything amazing lmao Also i wont be making any changes unless they're fixing something game breaking Likes: 0 - Views: 1278 - Downloads: 35 + Views: 1317 + Downloads: 38 - GameBananaType: Gamefile GameBananaId: 13866 Name: crowberry basket (decal set) @@ -1018,8 +1261,8 @@ yourself. should be ahorn compatible will update in future. allowed to suggest more caw! Likes: 4 - Views: 834 - Downloads: 13 + Views: 856 + Downloads: 14 - GameBananaType: Map GameBananaId: 214025 Name: The Windy Skyline @@ -1030,8 +1273,8 @@ 11 or so Rooms. A Golden Strawberry. A Crystal Heart Quite a bit of Wind. Maybe, after some time, a B Side. Hopefully you enjoy this windy little adventure. :)' Likes: 2 - Views: 1477 - Downloads: 55 + Views: 1513 + Downloads: 60 - GameBananaType: Map GameBananaId: 214021 Name: Fire Dreams @@ -1041,8 +1284,8 @@ map with lots of dream blocks. Target difficulty is for very casual players, the only tech required are dream jumps and wall bounces. Be Kind! Likes: 5 - Views: 2015 - Downloads: 19 + Views: 2037 + Downloads: 22 - GameBananaType: Map GameBananaId: 214019 Name: B side The adventure of OI! @@ -1051,7 +1294,7 @@ Text: B side of my first map has custom content took a bit will be updating and will probably fill in and add more to some screens Likes: 0 - Views: 679 + Views: 697 Downloads: 16 - GameBananaType: Map GameBananaId: 214018 @@ -1064,8 +1307,8 @@ and some secrets. I hope you enjoy it! Required* techs- Supers, Wallbounces, Neutrals, Wavedashes Optional* techs- Ultras, Demos Likes: 1 - Views: 796 - Downloads: 39 + Views: 817 + Downloads: 43 - GameBananaType: Map GameBananaId: 211773 Name: Cryoshock @@ -1106,8 +1349,8 @@ 6. Viv''s Helper 7. Max''s Helping Hand 8. Contort Helper 9. Jackal Helper 10. Flaglines and Such' Likes: 9 - Views: 9990 - Downloads: 254 + Views: 10188 + Downloads: 270 - GameBananaType: Wip GameBananaId: 52955 Name: Dusk @@ -1115,7 +1358,7 @@ Description: '' Text: 'Finished level here: Dusk' Likes: 2 - Views: 1564 + Views: 1635 Downloads: 32 - GameBananaType: Map GameBananaId: 214003 @@ -1127,8 +1370,8 @@ Good luck. The music is Wound-Up Windmill from the A Hat In Time soundtrack, by Pascal Michael Stiefel.' Likes: 3 - Views: 952 - Downloads: 24 + Views: 1076 + Downloads: 26 - GameBananaType: Map GameBananaId: 213951 Name: The adventures of OI! @@ -1136,8 +1379,8 @@ Description: IDK HOW I GOT HERE Text: first map short sweet not good probably Likes: 1 - Views: 1239 - Downloads: 30 + Views: 1259 + Downloads: 31 - GameBananaType: Skin GameBananaId: 184939 Name: Flag Repair @@ -1146,8 +1389,8 @@ Text: This mod is simply a skin mod for the flags in Golden Ridge areas that repairs the ones that're tattered. Nothing more to it than that. Likes: 2 - Views: 732 - Downloads: 23 + Views: 798 + Downloads: 26 - GameBananaType: Map GameBananaId: 213895 Name: A little bit harder celeste @@ -1156,7 +1399,7 @@ Text: 'This map contain 2 level : Forsaken city and Old site (old site is hard ,really) Thx for playing' Likes: 0 - Views: 698 + Views: 724 Downloads: 43 - GameBananaType: Map GameBananaId: 213890 @@ -1174,8 +1417,8 @@ as accurately as possible. If you like this map and enjoy precision platformers, make sure to check out the original game RITE here: https://store.steampowered.com/app/1322650/RITE/' Likes: 7 - Views: 4065 - Downloads: 136 + Views: 4131 + Downloads: 143 - GameBananaType: Map GameBananaId: 213882 Name: 1D_Garbage_Version.bin @@ -1197,7 +1440,7 @@ this map out before school starts again, and I have been having some technical problems with my laptop itself.' Likes: 1 - Views: 611 + Views: 629 Downloads: 14 - GameBananaType: Map GameBananaId: 213863 @@ -1210,8 +1453,8 @@ it's a decent bit more puzzly), and only advanced tech required is wallbounces for the C-Side. Likes: 2 - Views: 1160 - Downloads: 71 + Views: 1181 + Downloads: 75 - GameBananaType: Map GameBananaId: 213841 Name: The Seaside C-Side @@ -1230,8 +1473,8 @@ If you have any questions or encounter any weird bugs, feel free to reach out to me on discord at iamdadbod#7298 Or hop in my server: https://discord.gg/AX2TScr' Likes: 9 - Views: 7025 - Downloads: 216 + Views: 7459 + Downloads: 237 - GameBananaType: Map GameBananaId: 213835 Name: Stages of Insanity @@ -1241,8 +1484,8 @@ rooms, a couple secrets, and 99% less dash. Enjoy the map! :) (oh and try not to go insane) Difficulty: Hard Hours spent on gameplay testing: 10' Likes: 0 - Views: 1073 - Downloads: 58 + Views: 1085 + Downloads: 59 - GameBananaType: Map GameBananaId: 213833 Name: Evilleafy's Failed Maps @@ -1264,7 +1507,7 @@ and failed project. Summit Reimagined One gameplay chapter. My first attempt at a summit map, stopped pretty early on. Likes: 2 - Views: 715 + Views: 731 Downloads: 55 - GameBananaType: Map GameBananaId: 213799 @@ -1278,8 +1521,8 @@ pretty comfortably, as well as neutral jump. Huge shoutouts to Projecteer, WizardOfWit, snolls, eee., and Phyre, for playtesting the map and providing great feedback! Likes: 3 - Views: 701 - Downloads: 37 + Views: 726 + Downloads: 39 - GameBananaType: Map GameBananaId: 213808 Name: L-Break @@ -1291,8 +1534,8 @@ anything pretty much. Have fun... If you try it... (Also if something breaks/you have a question/a problem DM me in discord LennyTheSniper#2929) Likes: 1 - Views: 1253 - Downloads: 38 + Views: 1267 + Downloads: 40 - GameBananaType: Map GameBananaId: 213788 Name: Flappy Bird @@ -1302,8 +1545,8 @@ Now you can have Flappy Bird in Celeste. Yes. Yes. Yes. This was made within the span of two days, it is not a big project. Music Credit: https://www.youtube.com/watch?v=76GnOwHorn0&list=PLAlu1k6xjlvQAzf0s5-_nt32C1Llqghob&index=3&t=5s&ab_channel=KLGaming' Likes: 0 - Views: 779 - Downloads: 72 + Views: 789 + Downloads: 73 - GameBananaType: Wip GameBananaId: 52885 Name: Exploration (Chapter 1) @@ -1312,8 +1555,8 @@ Text: I've been working on an exploration mod, and a few people have wanted to look at it, so I decided to release an in-progress version of it. Likes: 3 - Views: 1713 - Downloads: 31 + Views: 1779 + Downloads: 33 - GameBananaType: Map GameBananaId: 213681 Name: Another Farewell Map @@ -1329,8 +1572,8 @@ playtesters said) Don''t really have anything else to say, but I hope you have fun playing this map!' Likes: 11 - Views: 5935 - Downloads: 129 + Views: 6027 + Downloads: 138 - GameBananaType: Tool GameBananaId: 6924 Name: Strawberry Tool @@ -1339,8 +1582,8 @@ Text: 'Strawberry Tool provides two features: Make the following strawberry transparent Detect nearby strawberries and other collectibles' Likes: 0 - Views: 1309 - Downloads: 32 + Views: 1421 + Downloads: 38 - GameBananaType: Map GameBananaId: 213715 Name: Jankness @@ -1355,7 +1598,7 @@ humour Intro Car A room dedicated to Jank, (Not required) If the map doesn't work I have no idea how to help you! (Sorry) Likes: 2 - Views: 1128 + Views: 1136 Downloads: 23 - GameBananaType: Map GameBananaId: 213706 @@ -1378,8 +1621,8 @@ Version: 1.0.1 memorialHelper Version: 1.0.3 VivHelper Version: 1.0.39 DJMapHelper Version: 1.8.20' Likes: 3 - Views: 2171 - Downloads: 77 + Views: 2203 + Downloads: 81 - GameBananaType: Gamefile GameBananaId: 13637 Name: Demonitized Celeste (Dialogue Mod) @@ -1417,8 +1660,8 @@ is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.' Likes: 2 - Views: 2858 - Downloads: 152 + Views: 3204 + Downloads: 159 - GameBananaType: Map GameBananaId: 213687 Name: Souper Madeline Climbs Soup Mountain 64 @@ -1429,8 +1672,8 @@ must have this name for a reason! Beginner difficulty map featuring 14 gameplay screens, with move blocks, clouds and that kind of stuff. Happy Soupmas! Likes: 9 - Views: 1567 - Downloads: 96 + Views: 1578 + Downloads: 100 - GameBananaType: Map GameBananaId: 213679 Name: Cliffside Ultra @@ -1440,8 +1683,8 @@ end intro cars tech required wavedashes & reverse wavedashes supers, mid air supers & reverse mid air supers wall bounces chained ultras hyper bhop Likes: 2 - Views: 2782 - Downloads: 83 + Views: 2837 + Downloads: 85 - GameBananaType: Skin GameBananaId: 184359 Name: Pride Mod @@ -1457,8 +1700,8 @@ update right away! Join the Pride Mod Discord Server with this link to use the hearts as emotes with Nitro! https://discord.gg/fPkfJdFdyq' Likes: 6 - Views: 3150 - Downloads: 111 + Views: 3447 + Downloads: 131 - GameBananaType: Map GameBananaId: 213659 Name: The Frosty Fell; A Holiday Map @@ -1477,8 +1720,8 @@ NO ADVANCED TECH REQUIRED!!!! 21 different screens to traverse 5 strawberries to collect' Likes: 2 - Views: 1473 - Downloads: 74 + Views: 1488 + Downloads: 78 - GameBananaType: Map GameBananaId: 213656 Name: Old 7duff @@ -1494,7 +1737,7 @@ but throughout the entire level. I'm basically uploading this just because it is artistically bad Likes: 0 - Views: 447 + Views: 458 Downloads: 10 - GameBananaType: Map GameBananaId: 213619 @@ -1512,8 +1755,8 @@ of these mappers! If you want more information or would like to participate in future contests, join the iamdadbod Discord server! Likes: 7 - Views: 4030 - Downloads: 185 + Views: 4103 + Downloads: 186 - GameBananaType: Map GameBananaId: 213646 Name: NATM - Not Another Troll Map (first map) @@ -1524,8 +1767,8 @@ It's missing and end screen and a logo but the map is complete. Have a FUN time! If you need to manually install. Copy the .zip file to C:\Program Files (x86)\Steam\steamapps\common\Celeste\Mods. Likes: 1 - Views: 552 - Downloads: 46 + Views: 564 + Downloads: 49 - GameBananaType: Map GameBananaId: 213645 Name: The Gauntlet @@ -1534,8 +1777,8 @@ Text: 3 levels, with b and c sides, the levels get shorter the further in the mod you get Likes: 3 - Views: 2227 - Downloads: 61 + Views: 2281 + Downloads: 63 - GameBananaType: Gamefile GameBananaId: 13571 Name: Crowd Control - Celeste @@ -1557,8 +1800,8 @@ character model, Madeline or Badeline! Feel free to reach out in our discord for any questions, comments or suggestions. https://discord.gg/warpworld' Likes: 2 - Views: 5429 - Downloads: 61 + Views: 5889 + Downloads: 63 - GameBananaType: Gamefile GameBananaId: 13588 Name: Jackal Helper @@ -1604,8 +1847,8 @@ the following lines in the appropriate section of the map''s everest.yaml: - Name: JackalHelper Version: 1.0.1' Likes: 5 - Views: 1850 - Downloads: 91 + Views: 1943 + Downloads: 105 - GameBananaType: Map GameBananaId: 213630 Name: Forgotten Buildings @@ -1615,8 +1858,8 @@ it. It's quite unpolished, barely any deco at all, and the gameplay is pretty bad, but i wanted to keep it as it was back when i made it. Likes: 2 - Views: 1154 - Downloads: 82 + Views: 1169 + Downloads: 85 - GameBananaType: Map GameBananaId: 213617 Name: Starry Sanctuary @@ -1626,8 +1869,8 @@ 1) dream hypers (taught) 2) reverse dream hypers 3) wall bounces (lot and lots of wall bounces) + misc. dream and extended dash tech Likes: 2 - Views: 1367 - Downloads: 40 + Views: 1457 + Downloads: 42 - GameBananaType: Map GameBananaId: 213599 Name: Jelly Bubbles @@ -1648,7 +1891,7 @@ show something cool you did yes it took me 3 months to get around to uploading this to gamebanana why do you ask Likes: 3 - Views: 779 + Views: 794 Downloads: 21 - GameBananaType: Map GameBananaId: 213593 @@ -1658,8 +1901,8 @@ Text: 'Short level based in some high mountaintops. Tech required: -anything from C side + Farewell No ultras :P' Likes: 3 - Views: 1462 - Downloads: 44 + Views: 1473 + Downloads: 45 - GameBananaType: Map GameBananaId: 213587 Name: snolls cursed map @@ -1670,8 +1913,8 @@ This map is not for everyone. Also it is humanly possible. I''ve done all of the screens multiple times when making this.' Likes: 0 - Views: 797 - Downloads: 29 + Views: 809 + Downloads: 32 - GameBananaType: Wip GameBananaId: 52824 Name: Untitled Farewell Map (WIP) @@ -1680,8 +1923,8 @@ Text: 'A map i''m working on. Required Tech: Wavedash Ultradash Jellyvator That''s it (for now...)' Likes: 2 - Views: 1899 - Downloads: 26 + Views: 1926 + Downloads: 27 - GameBananaType: Skin GameBananaId: 184104 Name: Madeline Spins Uncontrollably and Explodes @@ -1692,8 +1935,8 @@ as she flies towards her inevitable doom I''m not entirely sure what I wanted to achieve by coding this, but oh boy it exists now. Have fun(?)' Likes: 20 - Views: 5473 - Downloads: 131 + Views: 5788 + Downloads: 162 - GameBananaType: Map GameBananaId: 213500 Name: Way Home @@ -1702,8 +1945,8 @@ Text: Hello I made my first Celeste Level mod. It's pretty short and probably way too easy compared to the main game, but I hope yall enjoy it anyways. Likes: 4 - Views: 1129 - Downloads: 39 + Views: 1151 + Downloads: 43 - GameBananaType: Gamefile GameBananaId: 13523 Name: Dadbod Portraits @@ -1712,7 +1955,7 @@ Text: Adds two animated portraits of iamdadbod in Celeste's art style. There might be more in the future, there might not. [DADBOD right normal] [DADBOD right dadstracted] Likes: 0 - Views: 699 + Views: 713 Downloads: 12 - GameBananaType: Skin GameBananaId: 183939 @@ -1722,8 +1965,8 @@ Text: Huge thanks to Max480 for the code mod! This mod replace badeline to madeline its cursed ik Likes: 2 - Views: 2038 - Downloads: 31 + Views: 2105 + Downloads: 35 - GameBananaType: Map GameBananaId: 213459 Name: Badlands @@ -1732,8 +1975,8 @@ Text: 'My first (completed) map, finally available on Gamebanana! Includes: -6 rooms -2 strawberries -End heart -Cool-ish gameplay idk' Likes: 3 - Views: 827 - Downloads: 69 + Views: 847 + Downloads: 73 - GameBananaType: Map GameBananaId: 213457 Name: Nighttime Climb @@ -1746,8 +1989,8 @@ jumps I''m in the Celeste discord (Egahn#1421) so feel free to ping me with any feedback Enjoy :)' Likes: 3 - Views: 3753 - Downloads: 78 + Views: 3771 + Downloads: 81 - GameBananaType: Map GameBananaId: 213456 Name: EPIC e-girl campaign @@ -1764,8 +2007,8 @@ Special Thanks: deidatvm (original end art) SpoopySoup (original collab meter) OblivionFall (music) You are not allowed to talk about this map. Literally.' Likes: 3 - Views: 3108 - Downloads: 72 + Views: 3206 + Downloads: 75 - GameBananaType: Skin GameBananaId: 183915 Name: Kayden Fox Skin @@ -1777,8 +2020,8 @@ hair color changing mods. User discretion is advised! That''s really all there is to it. I am having fun with it tho! Dependencies: - Everest v2138' Likes: 2 - Views: 1690 - Downloads: 42 + Views: 1843 + Downloads: 49 - GameBananaType: Map GameBananaId: 213436 Name: Kayo's Dadbod Birthday Map @@ -1787,8 +2030,8 @@ Text: This map is so funny!! HAPPY BIRTHDAY IAMDADBOD! This map was released 1 day late, and I am so sorry about that! This requires Collab Utils 2. Likes: 1 - Views: 608 - Downloads: 16 + Views: 623 + Downloads: 17 - GameBananaType: Map GameBananaId: 213431 Name: Iamdadbod's Birthday Special - Dad's Tower @@ -1797,8 +2040,8 @@ Text: Very short map to celebrate December 10th, Celeste content creator iamdadbod's birthday! Made in 7 Hours, 4 Rooms, Intermediate-ish Difficulty. Enjoy! Likes: 2 - Views: 1128 - Downloads: 25 + Views: 1135 + Downloads: 26 - GameBananaType: Map GameBananaId: 213426 Name: Iamdadbod's Birthday Special - Neutral Metro @@ -1808,7 +2051,7 @@ Iamdadbod (december 10), I made this map. This map is focused around neutral climbing and blue boosters, and contains 6 rooms. Enjoy the map, and have a great night. Likes: 3 - Views: 1155 + Views: 1177 Downloads: 33 - GameBananaType: Map GameBananaId: 213417 @@ -1820,8 +2063,8 @@ and uhhhh yes play it i worked more than 2 months on it and its really good so uhuwhriwuxhoriuue Likes: 1 - Views: 768 - Downloads: 34 + Views: 781 + Downloads: 35 - GameBananaType: Map GameBananaId: 213371 Name: Scattered Disc @@ -1833,8 +2076,8 @@ Also, shoutout to Red_Boule for getting first Golden (twice) Required Tech: Wavedashes, Wallbounces, 5 Jumps' Likes: 2 - Views: 2261 - Downloads: 50 + Views: 2315 + Downloads: 51 - GameBananaType: Map GameBananaId: 213353 Name: Xolimono's Silly Things @@ -1851,8 +2094,8 @@ on some stuff, shoot me a message on discord explaining the problem (my tag is xolimono#5526)' Likes: 2 - Views: 1173 - Downloads: 35 + Views: 1181 + Downloads: 36 - GameBananaType: Map GameBananaId: 213349 Name: Chapter 6 Death Label (Bullet Hell Fight) @@ -1868,8 +2111,8 @@ then let me know, I''ll try to make it a bit harder. And good luck. If you want some good strategies, feel free to look at my clear video.' Likes: 6 - Views: 1615 - Downloads: 69 + Views: 1653 + Downloads: 71 - GameBananaType: Map GameBananaId: 213346 Name: Volcanoes are just Spicy Mountains @@ -1881,8 +2124,8 @@ Celeste Discord for letting me use their tileset Songs used: -Star Lavadom - Kirby star allies -Elevatorstuck' Likes: 5 - Views: 2369 - Downloads: 43 + Views: 2393 + Downloads: 44 - GameBananaType: Gui GameBananaId: 36211 Name: Celeste Input History @@ -1898,8 +2141,8 @@ been buffered or had no affect. Show screen transitions as a separate event (for help with transition boosts or bubsdrop). Likes: 1 - Views: 1900 - Downloads: 42 + Views: 1982 + Downloads: 49 - GameBananaType: Gamefile GameBananaId: 13452 Name: 2020 Spring Collab Randomizer (v0.1) @@ -1922,8 +2165,8 @@ every room, but there still may be issues in some. Contact me if you find an impossible room.' Likes: 1 - Views: 1902 - Downloads: 66 + Views: 1965 + Downloads: 81 - GameBananaType: Map GameBananaId: 213319 Name: Ferret's Micro Mountain @@ -1953,8 +2196,8 @@ for your suffering. If there's any game-breaking jank or weirdness, just let me know and I can try to patch it up. Likes: 8 - Views: 5430 - Downloads: 101 + Views: 5480 + Downloads: 106 - GameBananaType: Skin GameBananaId: 183518 Name: Cateline @@ -1965,8 +2208,8 @@ attempt to match the hair Madeline has, and it should be compatible with most hair mods. Likes: 11 - Views: 4514 - Downloads: 168 + Views: 5134 + Downloads: 210 - GameBananaType: Map GameBananaId: 213285 Name: Stuck in my head @@ -1976,7 +2219,7 @@ or spike jumps. Im not sure what else to put here, but enjoy! its not thoughtful dreams it but has similar mechanics Likes: 1 - Views: 1461 + Views: 1480 Downloads: 25 - GameBananaType: Skin GameBananaId: 183431 @@ -1985,7 +2228,7 @@ Description: binb Text: omplete binb idea from ayudon owo Likes: 0 - Views: 1290 + Views: 1335 Downloads: 14 - GameBananaType: Map GameBananaId: 213257 @@ -2005,7 +2248,7 @@ positive or negative, feel free to share it with me here or in the comments of the trailer. Thank you so much for playing!' Likes: 2 - Views: 2083 + Views: 2097 Downloads: 40 - GameBananaType: Map GameBananaId: 213252 @@ -2015,7 +2258,7 @@ Text: Since forsaken city is too boring.... I decide to make.... THIS Introducing forsaken city buffed!!!! (inspired by Clantis's map 7duff) Likes: 2 - Views: 1627 + Views: 1700 Downloads: 36 - GameBananaType: Map GameBananaId: 213236 @@ -2026,8 +2269,8 @@ gameplay style, found in 3A, 3B, and 3C. This falls into the Advanced/Expert difficulty. Not a lot, but I hope you enjoy it! Likes: 3 - Views: 925 - Downloads: 20 + Views: 937 + Downloads: 21 - GameBananaType: Map GameBananaId: 213219 Name: Stains with Crimson @@ -2043,8 +2286,8 @@ few helpers were used... Sorry about that if you end up needing to download a bunch before playing.' Likes: 5 - Views: 1371 - Downloads: 25 + Views: 1384 + Downloads: 27 - GameBananaType: Map GameBananaId: 213176 Name: TicTacToe in Celeste @@ -2054,8 +2297,8 @@ Text: yeah another strange way to abuse my helper, it's possible to cheat but imagine cheating in a children game... Likes: 3 - Views: 1914 - Downloads: 21 + Views: 1929 + Downloads: 22 - GameBananaType: Map GameBananaId: 213163 Name: Leisure Time @@ -2063,8 +2306,8 @@ Description: a short map with corner boooost Text: A short map that cost me 3hrs....(i'm not a good modder) Likes: 5 - Views: 2581 - Downloads: 62 + Views: 2608 + Downloads: 63 - GameBananaType: Tool GameBananaId: 6908 Name: Dependency Generator @@ -2076,8 +2319,8 @@ your everest.yaml (though it will create a backup). Installs like any other mod, Ahorn must be restarted for the option to appear! Likes: 13 - Views: 3953 - Downloads: 59 + Views: 4301 + Downloads: 79 - GameBananaType: Map GameBananaId: 213144 Name: 7duff @@ -2099,7 +2342,7 @@ id be alright with putting it in the map. 7d1d requires extended variants fsr, I don''t know why but just use it ig' Likes: 2 - Views: 1904 + Views: 1925 Downloads: 8 - GameBananaType: Skin GameBananaId: 183054 @@ -2108,8 +2351,8 @@ Description: '' Text: Enhance your banana-ism with this high quality banana skin. Likes: 4 - Views: 2607 - Downloads: 92 + Views: 2725 + Downloads: 105 - GameBananaType: Map GameBananaId: 213094 Name: Celeste Binary Calculator @@ -2119,7 +2362,7 @@ Text: A strange way to abuse my helper, it can't display negative numbers, multiply or divide :C Still, a working calculator in Celeste! YaY! Likes: 4 - Views: 2227 + Views: 2243 Downloads: 18 - GameBananaType: Skin GameBananaId: 182918 @@ -2128,8 +2371,8 @@ Description: '' Text: yeah, it's golden wings for flying strawberryes Likes: 1 - Views: 753 - Downloads: 19 + Views: 772 + Downloads: 21 - GameBananaType: Map GameBananaId: 213059 Name: Crystal Cave @@ -2138,8 +2381,8 @@ Text: My first Celeste map! One chapter, Crystal Cave -1 Checkpoint -13 Strawberries Very short and easy, enjoy ;) Likes: 3 - Views: 1239 - Downloads: 32 + Views: 1250 + Downloads: 33 - GameBananaType: Map GameBananaId: 213054 Name: 6 Jump Hell @@ -2152,7 +2395,7 @@ it. Everything in this map has been made in less than 40 minutes. Anyone who does the golden strawberry please ping me in the Celestecord. phant#7966 Likes: 1 - Views: 1425 + Views: 1448 Downloads: 11 - GameBananaType: Gamefile GameBananaId: 13280 @@ -2180,8 +2423,8 @@ !interactions with other helpers! : - walkelines can enter Pandora''s Box Clearpipes! Ty Cruor :D' Likes: 3 - Views: 1847 - Downloads: 36 + Views: 1961 + Downloads: 41 - GameBananaType: Map GameBananaId: 213032 Name: bruhleste @@ -2190,8 +2433,8 @@ Text: This is an easy campaign mod where Madeline climbs Celeste Mountain, and says "bruh." Comedy hijinx ensue! A fun time to be had by all. Likes: 3 - Views: 1403 - Downloads: 25 + Views: 1437 + Downloads: 26 - GameBananaType: Map GameBananaId: 213028 Name: Vibe Mountain @@ -2210,8 +2453,8 @@ Shoutouts to Lugei for being the first to golden the whole campaign :D https://www.youtube.com/channel/UCAJLC0s8Wb9ra1Nin8XXWkg Also shoutouts to Dylan for being the first to golden all the B-sides! https://www.youtube.com/channel/UC1YUlM8i5q_saPMltHu6XFw' Likes: 3 - Views: 6264 - Downloads: 117 + Views: 6301 + Downloads: 120 - GameBananaType: Gamefile GameBananaId: 13258 Name: Safe Respawn Crumble & Crystal Bomb Detonator @@ -2228,9 +2471,9 @@ 2 items, add this mod as a dependency to your everest.yaml (the mod is called SafeRespawnCrumble and contains both entities): - Name: YourModName Version: 1.0.0 Dependencies: - Name: SafeRespawnCrumble Version: 1.1.0' - Likes: 1 - Views: 854 - Downloads: 18 + Likes: 2 + Views: 920 + Downloads: 23 - GameBananaType: Map GameBananaId: 213017 Name: Corruption @@ -2251,8 +2494,8 @@ If you find any bugs or anything that seems jank/unintended, please let me know in this comment section or on the Celeste Discord server!' Likes: 3 - Views: 2622 - Downloads: 65 + Views: 2674 + Downloads: 70 - GameBananaType: Map GameBananaId: 213016 Name: Desertric Busuberance @@ -2263,8 +2506,8 @@ -no dying This map depends on CelesteNet (Chapter 2) and Adventure Helper (Chapter 2 and 3).' Likes: 2 - Views: 2385 - Downloads: 55 + Views: 2603 + Downloads: 61 - GameBananaType: Map GameBananaId: 213013 Name: Icy Cliff @@ -2273,8 +2516,8 @@ Text: Map entry for hated mechanics, short map containing a single gameplay room, mechanics are snowballs and bumpers, advanced difficulty Likes: 1 - Views: 1199 - Downloads: 18 + Views: 1217 + Downloads: 19 - GameBananaType: Map GameBananaId: 213003 Name: Jelly Dream @@ -2283,7 +2526,7 @@ Text: This is my first level. Gameplay involves jellyfish throwing combined with dream blocks. Requires wall bouncing and wavedashing in later sections. Likes: 3 - Views: 1967 + Views: 2081 Downloads: 20 - GameBananaType: Map GameBananaId: 212999 @@ -2304,8 +2547,8 @@ These were originally intended to be used with the 2020 Spring Collab, which you can find here.' Likes: 5 - Views: 2611 - Downloads: 71 + Views: 2627 + Downloads: 72 - GameBananaType: Map GameBananaId: 212998 Name: Sunset Rise @@ -2329,8 +2572,8 @@ custom graphics. If you''ve found any bugs or issues, feel free to let me know in the comment section. Have fun!' Likes: 7 - Views: 6627 - Downloads: 86 + Views: 6794 + Downloads: 96 - GameBananaType: Map GameBananaId: 212995 Name: Forsaken City E-Side+ @@ -2339,7 +2582,7 @@ Text: Is forsaken city e-side too easy to golden Well try forsaken city e-side+ i swear i dont have a problem Likes: 3 - Views: 1329 + Views: 1459 Downloads: 33 - GameBananaType: Gamefile GameBananaId: 13244 @@ -2350,7 +2593,7 @@ your input, to give feedback to your presses. This was mainly made so I could get used to the Everest mod engine. Likes: 1 - Views: 1743 + Views: 1879 Downloads: 16 - GameBananaType: Skin GameBananaId: 182670 @@ -2359,8 +2602,8 @@ Description: wat Text: Two characters are both crystal now! epic right? Likes: 0 - Views: 1480 - Downloads: 17 + Views: 1535 + Downloads: 18 - GameBananaType: Map GameBananaId: 212943 Name: Windy Swap Block Bonanza @@ -2369,8 +2612,8 @@ Text: Submission for the Hated Mechanics event. Uses wind and swap blocks, as one might deduce from the name. Likes: 0 - Views: 536 - Downloads: 14 + Views: 544 + Downloads: 15 - GameBananaType: Map GameBananaId: 212911 Name: Temporal Shrine @@ -2400,8 +2643,8 @@ Cp2: https://www.youtube.com/watch?v=UOQduQqQoXM&ab_channel=AlecHolowka-Topic Cp3: https://www.youtube.com/watch?v=c4oLMGThh3k&ab_channel=DinkIeberg Cp4: https://www.youtube.com/watch?v=AR1k9_nmbSg&ab_channel=AlecHolowka-Topic' Likes: 14 - Views: 9107 - Downloads: 133 + Views: 9203 + Downloads: 141 - GameBananaType: Map GameBananaId: 212107 Name: Rock Bottom @@ -2418,8 +2661,8 @@ on Youtube, for their remix that they graciously let me use. -The song used: https://www.youtube.com/watch?v=sJ1rBYgOKnk -Their Youtube Channel: https://www.youtube.com/channel/UCw2GJeizmJn1uR6qWH9E4cw' Likes: 6 - Views: 4326 - Downloads: 59 + Views: 4419 + Downloads: 64 - GameBananaType: Map GameBananaId: 212900 Name: Extra Jumps Competition @@ -2432,8 +2675,8 @@ maps for them to win. Winners:Gameplay: aleph_null (Low Effort Ultra Map) Decoration: Quantum Spaceman (Hallucinations of Flying) Creativity: tobyaaa (Royal Blue Reef)' Likes: 7 - Views: 9257 - Downloads: 66 + Views: 9595 + Downloads: 67 - GameBananaType: Gamefile GameBananaId: 13215 Name: Chaos Mode @@ -2450,8 +2693,8 @@ flashing and very loud sounds. Be sure to keep your game volume at a reasonable level, and don''t play this mod if you''re epileptic.' Likes: 1 - Views: 4298 - Downloads: 47 + Views: 4355 + Downloads: 49 - GameBananaType: Map GameBananaId: 212862 Name: Madeline Votes in the US Presidential Election @@ -2462,8 +2705,8 @@ An A, B, and C-Side An narrative of epic proportions that will leave you in tears! NO BIAS!!!?! randomizer support i guess Dadbod''s video on the A-Side: https://youtu.be/cuJdm-YJXwg' Likes: 10 - Views: 8190 - Downloads: 115 + Views: 8252 + Downloads: 118 - GameBananaType: Gui GameBananaId: 36089 Name: Spoopy's Repaint Endscreens @@ -2475,8 +2718,8 @@ is the larger image files at the end of chapters and farewell because the files were to big to fit with the rest. Oh and not to mention a little code editing! Likes: 3 - Views: 1833 - Downloads: 19 + Views: 1878 + Downloads: 22 - GameBananaType: Map GameBananaId: 212830 Name: Nightmare´s Realm @@ -2484,7 +2727,7 @@ Description: A short halloween map by Rue Text: My halloween entry map! took about a month to make 5 advanced difficulty rooms Likes: 6 - Views: 1693 + Views: 1722 Downloads: 27 - GameBananaType: Map GameBananaId: 212818 @@ -2494,7 +2737,7 @@ Text: 'My first map: Short and not too hard because I''m not a pro gamer :). Hope it''s enjoyable' Likes: 1 - Views: 877 + Views: 884 Downloads: 30 - GameBananaType: Map GameBananaId: 212797 @@ -2509,8 +2752,8 @@ 2.Renatotheflowey - 2 - Moon Event, Crimson Night 3. Have you completed the Golden Strawberry? Say me on Discord - SummitBadeline#5590' Likes: 2 - Views: 1931 - Downloads: 20 + Views: 1944 + Downloads: 22 - GameBananaType: Wip GameBananaId: 52567 Name: IronSmeltery's Campaign (InDevVer) @@ -2519,8 +2762,8 @@ Text: In development branch of my campaign. (1/8) Chapters Completed. Working on Chapter 2. Likes: 0 - Views: 2890 - Downloads: 23 + Views: 3025 + Downloads: 26 - GameBananaType: Gamefile GameBananaId: 13148 Name: Yet Another Helper @@ -2544,8 +2787,8 @@ to settings given by the mapper. Remove Light Sources Trigger: Changes (or entirely disables) light and bloom strength. Spawn Jelly Trigger: Spawns a jelly where the player currently is, can be set to be multiple times.' - Likes: 2 - Views: 2010 + Likes: 3 + Views: 2057 Downloads: 16 - GameBananaType: Map GameBananaId: 212765 @@ -2564,8 +2807,8 @@ remove the image in Graphics>Atlases>Endscreens. This minimap was made for the 2020 October Map Making Contest.' Likes: 1 - Views: 3216 - Downloads: 61 + Views: 3241 + Downloads: 63 - GameBananaType: Map GameBananaId: 212759 Name: Forgotten Path @@ -2578,8 +2821,8 @@ with 26 strawberries, a b-side (no b-side yet) and no crystal heart and requires no dependencies. Just a fun, short, simple map. Likes: 3 - Views: 1182 - Downloads: 58 + Views: 1248 + Downloads: 60 - GameBananaType: Map GameBananaId: 212743 Name: 9tvb66v @@ -2599,22 +2842,21 @@ (Checkpoint 2 third Strawberry) Double Block Boost (Checkpoint 2 sixth Strawberry) Cornerboost (Checkpoint 2 sixth strawberry) There are no dependencies.' Likes: 4 - Views: 1357 + Views: 1376 Downloads: 19 - GameBananaType: Wip GameBananaId: 52556 Name: Granny Skin Mod Authors: [Vater Ibrahim] Description: '' - Text: Sorry that i can't update my mods as frequently as i used to. I' m currently - learning how to program video games in Unity with C# and I also have to study - for my graduation exam. A skin mod that allows you to play as granny in Celeste. - You must have the variant mode unlocked and Other Self enabled in the variant - mode settings. I also recommend using the Toggleabble Hair Mod by MunMun to disable - the hair of Badeline + Text: The Granny Skin Mod is NOT working with the helper mod of the "SECRET OF CELESTE + MOUNTAIN" mod! Disable the helper to use this mod! A skin mod that allows you + to play as granny in Celeste. You must have the variant mode unlocked and Other + Self enabled in the variant mode settings. I also recommend using the Toggleabble + Hair Mod by MunMun to disable the hair of Badeline Likes: 3 - Views: 2797 - Downloads: 38 + Views: 2843 + Downloads: 47 - GameBananaType: Map GameBananaId: 212718 Name: Knipe @@ -2636,17 +2878,17 @@ Marlin for doing a TAS of my map and Celeste community for helping me and being cool :)' Likes: 10 - Views: 3582 - Downloads: 70 + Views: 3713 + Downloads: 73 - GameBananaType: Skin GameBananaId: 182207 Name: Trans Berry Authors: [Makiwi, bug (no account), lilybeevee] Description: Berries say trans rights Text: So basically I made the berries in Celeste trans. love u - Likes: 9 - Views: 4786 - Downloads: 73 + Likes: 10 + Views: 5343 + Downloads: 88 - GameBananaType: Map GameBananaId: 212700 Name: Celeste But it's Harder @@ -2666,8 +2908,8 @@ It is focused on adding new spins by limiting movement to specific routes, sometimes using less known movement. The idea is to make it harder, but not unfun.' Likes: 4 - Views: 2761 - Downloads: 51 + Views: 2813 + Downloads: 53 - GameBananaType: Gamefile GameBananaId: 13129 Name: Anonhelper @@ -2694,8 +2936,8 @@ it is. (Note: I will not make a legacy version of it if you decide to map with it as is, sorry.)' Likes: 1 - Views: 1749 - Downloads: 42 + Views: 1795 + Downloads: 44 - GameBananaType: Map GameBananaId: 212681 Name: DrIvanKO's Torture City @@ -2705,8 +2947,8 @@ but doable. The heart was made with love for the true masochists. Thanks to fishtank for making a completion video. It contained a lot of cheese which got fixed. Likes: 3 - Views: 1701 - Downloads: 20 + Views: 1714 + Downloads: 22 - GameBananaType: Gamefile GameBananaId: 13116 Name: Theo Dialog @@ -2721,8 +2963,8 @@ as him. How do i activate this dialog mod? Just select it in the language selection menu!' Likes: 1 - Views: 993 - Downloads: 16 + Views: 1036 + Downloads: 20 - GameBananaType: Map GameBananaId: 212666 Name: Short & Sweet (Discontinued) @@ -2732,7 +2974,7 @@ Theres only 2 levels, each 10 rooms long, currently. Contains: 1 lobby 2 Levels 2 Hearts Cutscenes! Yours favourite, bumpers. Another cancelled project...' Likes: 1 - Views: 899 + Views: 908 Downloads: 9 - GameBananaType: Gamefile GameBananaId: 13115 @@ -2782,8 +3024,8 @@ logic gate trigger, which lets you set a session flag if two other session flags are some particular combination of values' Likes: 4 - Views: 3002 - Downloads: 67 + Views: 3150 + Downloads: 77 - GameBananaType: Map GameBananaId: 212653 Name: Nano's Nightmare @@ -2794,8 +3036,8 @@ or not the whatever amount of maps I''ve made here as of right now, they are short and are found within a lobby. More maps are yet to come, so look out for that!' Likes: 9 - Views: 5562 - Downloads: 69 + Views: 5607 + Downloads: 72 - GameBananaType: Tool GameBananaId: 6884 Name: Celeste Package Generator @@ -2810,9 +3052,9 @@ will be later implemented in a update! Any bugs or issues? If you encounter a nasty bug or something is wrong, you can message me on discord at Mün#0001 or ping me in the Celeste discord! - Likes: 3 - Views: 3016 - Downloads: 287 + Likes: 4 + Views: 3266 + Downloads: 322 - GameBananaType: Gamefile GameBananaId: 13065 Name: Infinite Backups @@ -2822,7 +3064,7 @@ time the game saves and put them into time-based folder Auto delete old backups if you don't want the backup folder becomes too large Likes: 2 - Views: 1954 + Views: 1962 Downloads: 25 - GameBananaType: Gamefile GameBananaId: 13046 @@ -2836,8 +3078,8 @@ Side and Void Side More maps will be added in the future. :) There are likely to be plenty of bugs/softlocks so please report when you find them. Github: https://github.com/Mnstrman06/CelesteRandomizerHelper/' Likes: 4 - Views: 4924 - Downloads: 67 + Views: 5021 + Downloads: 76 - GameBananaType: Gamefile GameBananaId: 13043 Name: Path of Hope Randomizer Config @@ -2846,8 +3088,8 @@ Text: Adds randomizing support for Path of Hope. Still in early stage so feel free to comment if you found any bugs. Likes: 1 - Views: 1198 - Downloads: 15 + Views: 1227 + Downloads: 16 - GameBananaType: Gamefile GameBananaId: 13041 Name: mountain (Dialogue mod?) @@ -2868,8 +3110,8 @@ Because it is required, it is best to just leave text in. This pack is labeled by a cassette. I can also try to update this for certain mods too if requested. Likes: 0 - Views: 909 - Downloads: 5 + Views: 921 + Downloads: 6 - GameBananaType: Gamefile GameBananaId: 13023 Name: SSM's Quality of Life Mod @@ -2910,8 +3152,8 @@ this one instead, but other mods already have it as an optional dependency and I don''t want to make them update their code.)' Likes: 4 - Views: 2840 - Downloads: 36 + Views: 2909 + Downloads: 38 - GameBananaType: Skin GameBananaId: 181711 Name: J's Textures @@ -2919,8 +3161,8 @@ Description: '' Text: A bunch of recolours I made. Likes: 1 - Views: 1799 - Downloads: 29 + Views: 1831 + Downloads: 31 - GameBananaType: Map GameBananaId: 212513 Name: Tsubasa no Aru @@ -2929,8 +3171,8 @@ Text: 'My First Map ! ^^ Featuring : - Vertical / Dream blocks based gameplay - 2 Violin musics for your pleasure :p Thanks for Luna and max480 for help.' Likes: 2 - Views: 1990 - Downloads: 28 + Views: 2017 + Downloads: 31 - GameBananaType: Map GameBananaId: 212505 Name: Hexagon Force @@ -2951,7 +3193,7 @@ Part of You and maybe the second map ever featuring dual player:) BGM: -Hexagon Force- by Waterflame' Likes: 5 - Views: 6387 + Views: 6438 Downloads: 63 - GameBananaType: Map GameBananaId: 212472 @@ -2982,8 +3224,8 @@ fix it. I would like to particularly thank Cabob and Stotch for playtesting the entire mod and giving super detailed and helpful feedback the entire way through.' Likes: 8 - Views: 9415 - Downloads: 123 + Views: 9457 + Downloads: 127 - GameBananaType: Wip GameBananaId: 52481 Name: Dash Temple[WIP] @@ -2991,7 +3233,7 @@ Description: '' Text: Playtesting early Likes: 0 - Views: 643 + Views: 652 Downloads: 11 - GameBananaType: Gamefile GameBananaId: 12972 @@ -3016,8 +3258,8 @@ fun! To use this helper as part of your map, put the text below into the Dependencies: section of your everest.yaml: - Name: BounceHelper Version: 1.0.1' Likes: 6 - Views: 1644 - Downloads: 15 + Views: 1794 + Downloads: 22 - GameBananaType: Map GameBananaId: 212451 Name: Trolleste (Discontinued?) @@ -3028,8 +3270,8 @@ guess! Contains: 3 chapters! (That''s alot, right?) 2 Hearts! Actually collectable berries! Uh, trolls, i guess? Meme man!' Likes: 2 - Views: 4160 - Downloads: 36 + Views: 4185 + Downloads: 37 - GameBananaType: Map GameBananaId: 212443 Name: Madeline in Wonderland @@ -3040,7 +3282,7 @@ If you want to have fun with hitboxes, use "hitbox" command(params: very_big, big, fat_big, thin_big, normal, small, thin_small, fat_small, very_small).' Likes: 2 - Views: 1997 + Views: 2026 Downloads: 27 - GameBananaType: Map GameBananaId: 212434 @@ -3050,8 +3292,8 @@ Text: I really proud of it, it has more than 40 rooms, a lot of unique mechanics and it is really hard, good luck ! (warning it is not finished and abandonned) Likes: 2 - Views: 973 - Downloads: 17 + Views: 989 + Downloads: 19 - GameBananaType: Map GameBananaId: 212428 Name: Height @@ -3074,8 +3316,8 @@ be inconvenient - The stylegrounds are ugly Any advice to fix any of the above issues. or any feedback at all, is greatly appreciated!' Likes: 1 - Views: 1404 - Downloads: 21 + Views: 1415 + Downloads: 23 - GameBananaType: Map GameBananaId: 212404 Name: Hakoniwa Adventure @@ -3093,8 +3335,8 @@ Since Part 1 (Old Abyss + Realization) is going to be completely remade and Part 2 is still missing, currently the plot of this map may be a bit confusing.' Likes: 8 - Views: 3875 - Downloads: 68 + Views: 3924 + Downloads: 71 - GameBananaType: Map GameBananaId: 212384 Name: hennyburgr's Mapping Competition Entries @@ -3107,8 +3349,8 @@ I will wait until after judging has finished to add a competition map to this collection. Likes: 0 - Views: 561 - Downloads: 7 + Views: 568 + Downloads: 8 - GameBananaType: Map GameBananaId: 212365 Name: For iamdadbod :) @@ -3119,7 +3361,7 @@ People who beat the map without cheating and with proof will appear here! 1- 2- 3- Likes: 2 - Views: 2325 + Views: 2335 Downloads: 17 - GameBananaType: Map GameBananaId: 212360 @@ -3138,7 +3380,7 @@ more precision than "error 418", the saves are much shorter. Of course, If you want to get golden berry, there you go:) BGM: Pushing onwards - Souleye' Likes: 4 - Views: 2623 + Views: 2639 Downloads: 32 - GameBananaType: Map GameBananaId: 211789 @@ -3155,8 +3397,8 @@ contests, although they will be very different. If you''d like to join, contact Donker19#1010 on discord for the details.' Likes: 6 - Views: 4116 - Downloads: 58 + Views: 4170 + Downloads: 61 - GameBananaType: Map GameBananaId: 212325 Name: Blindsided (Demo Ver.) @@ -3179,8 +3421,8 @@ each while blindfolded. CURRENT WR TIMES: Hurting Cityscape: N/A Broken Building: N/A Bridge to Nowhere: N/A (Submit runs to us via comment and video proof!)' Likes: 2 - Views: 1906 - Downloads: 21 + Views: 1919 + Downloads: 22 - GameBananaType: Map GameBananaId: 212317 Name: Dystopia @@ -3197,8 +3439,8 @@ there is no b/c-side for this atm, I plan to add one if not both at some point where you may or may not be able to dash)' Likes: 9 - Views: 5225 - Downloads: 76 + Views: 5238 + Downloads: 77 - GameBananaType: Map GameBananaId: 212315 Name: Dream before a journey @@ -3213,8 +3455,8 @@ the everest.yaml i wouldve added these but i couldnt find the dependencies so for now you will have to manually download these.' Likes: 1 - Views: 1315 - Downloads: 15 + Views: 1335 + Downloads: 16 - GameBananaType: Map GameBananaId: 212301 Name: 24x33 @@ -3231,8 +3473,8 @@ has 666 red strawberries and a winged golden strawberry, try collect all of them if you have plenty of time:) BGM: "24x33" by Betonkust & Palmbomen II' Likes: 4 - Views: 3695 - Downloads: 30 + Views: 3720 + Downloads: 31 - GameBananaType: Map GameBananaId: 212296 Name: The Tower (WIP) @@ -3240,7 +3482,7 @@ Description: A map focused on climbing and jumping Text: A map focused on climbing and jumping. Still in beta, one chapter so far. Likes: 2 - Views: 710 + Views: 715 Downloads: 2 - GameBananaType: Map GameBananaId: 212228 @@ -3265,8 +3507,8 @@ you go main route, B-Side if you want to collect all red strawberries. BGM: Astronomy set 01 by Rin Have fun playing this map~' Likes: 3 - Views: 1855 - Downloads: 27 + Views: 1878 + Downloads: 28 - GameBananaType: Map GameBananaId: 212220 Name: Fourth Dimension @@ -3278,8 +3520,8 @@ Dimension by Creo (go check Creo''s stuff out, he is an incredible artist: https://www.youtube.com/user/hyperdemented) Tilesets were made by iamdadbod' Likes: 14 - Views: 6748 - Downloads: 91 + Views: 6831 + Downloads: 96 - GameBananaType: Wip GameBananaId: 52406 Name: Crap Maps @@ -3287,7 +3529,7 @@ Description: '' Text: don't get these Likes: 3 - Views: 2027 + Views: 2033 Downloads: 21 - GameBananaType: Wip GameBananaId: 52381 @@ -3303,7 +3545,7 @@ (not really tech, but knowing this is mandatory is important) -corner jumps -ultras -demodashes' Likes: 0 - Views: 695 + Views: 705 Downloads: 7 - GameBananaType: Map GameBananaId: 212049 @@ -3313,8 +3555,8 @@ Text: dumb poopoo map i made as a joke i didnt even playtest it so i think its impossible lmao beat it and upload it to youtube so your name can appear here Likes: 2 - Views: 2166 - Downloads: 14 + Views: 2193 + Downloads: 15 - GameBananaType: Map GameBananaId: 211525 Name: IronSmeltery's Campaign @@ -3322,15 +3564,15 @@ LIER0] Description: Is not hard :> Text: 'I decided to make a remix of Forsaken City, and I somehow made an expert - level while aiming for an easy one, welp. I''m making a full 8 chapter Campaign. - (1/8) Chapters Completed. Working on Chapter 2. Special thanks to: - Max480 for + level while aiming for an easy one, welp. I''m making a full 7 chapter Campaign. + (1/7) Chapters Completed. Working on Chapter 2. Special thanks to: - Max480 for making me a special chapter card+DLL for it, making a custom version of the Chapter 2 Dream Mirror (Not released yet), english.txt stuff, and helping with various other things. - L1ER0 for helping me with the end screen of the first chapter and english.txt stuff.' Likes: 1 - Views: 1845 - Downloads: 26 + Views: 1858 + Downloads: 27 - GameBananaType: Map GameBananaId: 212004 Name: Stop The Glitch @@ -3338,8 +3580,8 @@ Description: A short map Text: A short little map I made. It's my first map, so it might not be good. Likes: 3 - Views: 2688 - Downloads: 28 + Views: 2708 + Downloads: 31 - GameBananaType: Map GameBananaId: 211745 Name: The 2020 Celeste Spring Community Collab @@ -3376,9 +3618,9 @@ chapter. This link has a list of all available videos with additional information including direct links to specific videos. New videos are being released daily so check back often!' - Likes: 79 - Views: 229687 - Downloads: 3694 + Likes: 82 + Views: 233629 + Downloads: 4107 - GameBananaType: Gamefile GameBananaId: 12784 Name: Collab Utils 2 @@ -3408,8 +3650,8 @@ and features work in more detail, and gives you the mod structure to follow if you want to make a collab organized like the 2020 Spring Collab.' Likes: 13 - Views: 14457 - Downloads: 511 + Views: 14894 + Downloads: 543 - GameBananaType: Map GameBananaId: 211880 Name: Summit Encore @@ -3426,8 +3668,8 @@ you have an understanding of those before playing. have fun! any and all feedback is welcome!' Likes: 3 - Views: 8849 - Downloads: 89 + Views: 8918 + Downloads: 94 - GameBananaType: Map GameBananaId: 211941 Name: Resting Grounds @@ -3447,8 +3689,8 @@ checkpoint pictures (if that counts). I hope you will enjoy playing my map! (Sorry if my English is not 100% correct) Likes: 6 - Views: 6204 - Downloads: 66 + Views: 6301 + Downloads: 69 - GameBananaType: Map GameBananaId: 211931 Name: Badeline Bullet Hell Fight (Chapter 6 EX-Side) @@ -3462,8 +3704,8 @@ mod settings menu. This is not an easy fight, so good luck to anyone who tries to beat this, it''s quite intense, the hardest RNG attacks especially.' Likes: 8 - Views: 5768 - Downloads: 117 + Views: 5809 + Downloads: 128 - GameBananaType: Map GameBananaId: 211926 Name: Clockwork Orange @@ -3474,8 +3716,8 @@ iamdadbod's discord server. One room(+ one intro room), no tech required. Turned out pretty good I think, so I hope you enjoy! Likes: 1 - Views: 1152 - Downloads: 20 + Views: 1160 + Downloads: 21 - GameBananaType: Map GameBananaId: 211925 Name: Ultra Skool @@ -3486,8 +3728,8 @@ to balance this type of map so playtesting feedback is open. I hope this is a useful tool for learning and practicing and maybe somewhat fun. Likes: 5 - Views: 3468 - Downloads: 119 + Views: 3622 + Downloads: 125 - GameBananaType: Map GameBananaId: 211917 Name: Kevlov Dog @@ -3501,7 +3743,7 @@ it! The music is Gregg''s Woods from the Night in the Woods soundtrack. Link here: https://www.youtube.com/watch?v=RWDC9bwEaZ0&ab_channel=AlecHolowka-Topic' Likes: 2 - Views: 2178 + Views: 2186 Downloads: 23 - GameBananaType: Map GameBananaId: 211914 @@ -3513,7 +3755,7 @@ other mechanic, and there were 24 hours to make it. I definitely want to make a full campaign based around this later. Likes: 1 - Views: 985 + Views: 1000 Downloads: 11 - GameBananaType: Map GameBananaId: 211913 @@ -3536,8 +3778,8 @@ but the main mechanic of the level is this so if you''re not doing it, then the map won''t really work.' Likes: 1 - Views: 1021 - Downloads: 13 + Views: 1035 + Downloads: 14 - GameBananaType: Map GameBananaId: 211911 Name: BlueXans' iamdadbod 4k Event Submission @@ -3545,7 +3787,7 @@ Description: '' Text: This is my submission for the iamdadbod 4k event week mapping contest submission. Likes: 1 - Views: 491 + Views: 497 Downloads: 8 - GameBananaType: Map GameBananaId: 211910 @@ -3564,7 +3806,7 @@ in game is called "My Thing But for Donker18", in case you cant find it. And the 2nd map is named "Bananas spoopy entry)' Likes: 4 - Views: 1073 + Views: 1098 Downloads: 17 - GameBananaType: Map GameBananaId: 211908 @@ -3578,8 +3820,8 @@ the difficulty had to be intermediate so I hope others will as well :) The music used in the map is re[g]ulation by Street: https://streetofficial.bandcamp.com/track/re-g-ulation' Likes: 1 - Views: 717 - Downloads: 12 + Views: 743 + Downloads: 13 - GameBananaType: Map GameBananaId: 211906 Name: Sky Gardens (Contest Entry) @@ -3589,8 +3831,8 @@ of red boosters. Obviously shoutouts to Donker because without the contest, this map wouldn't exist. Likes: 2 - Views: 2301 - Downloads: 28 + Views: 2319 + Downloads: 29 - GameBananaType: Map GameBananaId: 211905 Name: MaxBoi's "Red Bubble Contest" Entry @@ -3601,7 +3843,7 @@ of gameplay! - 0 berries! - 1 Heart! - Propeller Box from Pandoras Box! (Thank you for making it Cruor)' Likes: 1 - Views: 875 + Views: 885 Downloads: 20 - GameBananaType: Map GameBananaId: 211903 @@ -3612,7 +3854,7 @@ to end the level. 5 intermediate difficulty screens. Tech required: 1. Wavedash 2. Neutral' Likes: 1 - Views: 972 + Views: 981 Downloads: 9 - GameBananaType: Gamefile GameBananaId: 12788 @@ -3621,7 +3863,7 @@ Description: The tileset you've been waiting for! Text: Official website More intro car tileset Don't forget to leave a like! \/ Likes: 5 - Views: 1436 + Views: 1475 Downloads: 28 - GameBananaType: Map GameBananaId: 211897 @@ -3636,8 +3878,8 @@ future events. This map is around red bubles and cassette blocks. I anounce that I will be making a full map out of this idea.' Likes: 1 - Views: 874 - Downloads: 27 + Views: 884 + Downloads: 28 - GameBananaType: Map GameBananaId: 211893 Name: JaThePlayer's contest maps @@ -3649,7 +3891,7 @@ needed to make a room that''s max. 30s long using Red Boosters and one other mechanic. I used clear pipes from Pandora''s Box.' Likes: 1 - Views: 762 + Views: 766 Downloads: 19 - GameBananaType: Map GameBananaId: 211882 @@ -3661,8 +3903,8 @@ features the key mechanic of: Station Blocks! Think Kevin BLocks, but on tracks. Hope you enjoy!' Likes: 3 - Views: 3384 - Downloads: 70 + Views: 3401 + Downloads: 73 - GameBananaType: Map GameBananaId: 211855 Name: World's Hardest Game - Celeste Remake @@ -3680,7 +3922,7 @@ game. BGM: ''Growing on me'' by snayk (just the same as the original game). Have fun playing this map:)' Likes: 4 - Views: 5541 + Views: 5586 Downloads: 80 - GameBananaType: Map GameBananaId: 211807 @@ -3700,7 +3942,7 @@ a save, but if you wanna get golden strawberry, go for it:) BGM: Exactly the same as the original ''I wanna trial the 100trap'' (A-side).' Likes: 4 - Views: 3881 + Views: 3896 Downloads: 103 - GameBananaType: Map GameBananaId: 211806 @@ -3717,8 +3959,8 @@ especially to BV502 for making me want to continue working on this. I''ll continue working on the flags I missed for the B-Side :) Hope you enjoy' Likes: 3 - Views: 3015 - Downloads: 43 + Views: 3024 + Downloads: 44 - GameBananaType: Skin GameBananaId: 180538 Name: Sokz' stupid dragon thing @@ -3727,8 +3969,8 @@ Text: This mod does absolutely nothing, except replace madeline with Thing, a dragon...thing. Also some story changes. Now less buggy and way better. (still a wip) Likes: 2 - Views: 1711 - Downloads: 30 + Views: 1752 + Downloads: 31 - GameBananaType: Map GameBananaId: 211798 Name: X-Side - Arrietty's Adventures @@ -3743,7 +3985,7 @@ places. If you''re interested in higher techniques, go for it:) Hope you find all the strawberries:) BGM: Arrietty''s Song (Instrumental Version)' Likes: 3 - Views: 1827 + Views: 1833 Downloads: 24 - GameBananaType: Gamefile GameBananaId: 12742 @@ -3754,8 +3996,8 @@ lighting command. This is useful to get which values are currently used while in a level (either to copy them, or to check if they are correct). Likes: 1 - Views: 808 - Downloads: 14 + Views: 818 + Downloads: 15 - GameBananaType: Map GameBananaId: 211792 Name: 'I Wanna Atone the Flower: Celeste Remake' @@ -3779,9 +4021,9 @@ more difficult than for example 3L. I myself have currently only actually beaten the screens in segments but will definitely try going for it legitimately in the future.' - Likes: 4 - Views: 4204 - Downloads: 42 + Likes: 5 + Views: 4235 + Downloads: 43 - GameBananaType: Skin GameBananaId: 180511 Name: Pidgey Skin @@ -3789,8 +4031,8 @@ Description: '*Pidgey noises*' Text: This turns the crow into a Pidgey! Likes: 2 - Views: 2729 - Downloads: 29 + Views: 2769 + Downloads: 34 - GameBananaType: Wip GameBananaId: 52326 Name: Hilda Mod @@ -3804,8 +4046,8 @@ being developed on. It would be appreciated if you could give feedback and also report bugs and errors so we can try to fix them ASAP' Likes: 4 - Views: 3174 - Downloads: 28 + Views: 3365 + Downloads: 30 - GameBananaType: Map GameBananaId: 211778 Name: Downwards - My First Map @@ -3815,8 +4057,8 @@ needs: DJ Map Helper Factory Helper Adventure Helper Or you could just start celeste and download it in-game. Whatever. I do not really care.' Likes: 3 - Views: 1385 - Downloads: 28 + Views: 1392 + Downloads: 29 - GameBananaType: Wip GameBananaId: 52321 Name: Spoopy's Dialog Mod/Repaint @@ -3837,8 +4079,8 @@ any ideas shoot ''em at me if you''d like. Shoutouts to cupacawfee for some dialogue help and ideas! Also thank Norah for the upside down seekers, yeah.' Likes: 12 - Views: 6635 - Downloads: 39 + Views: 6700 + Downloads: 40 - GameBananaType: Map GameBananaId: 211757 Name: The Climb @@ -3848,7 +4090,7 @@ much content as possible requires frosthelper, djmaphelper and adventurehelper. please unzip the folder and extract the my world folder from it into your mods Likes: 2 - Views: 1697 + Views: 1706 Downloads: 74 - GameBananaType: Skin GameBananaId: 180365 @@ -3860,9 +4102,9 @@ sprites with Niko, From Oneshot. So what better way to express my love for both games than making an skin for it? ^^ It may not be perfect, but hey, its something. tho tbh i think i almost went insane making this one, too many sprites xd - Likes: 18 - Views: 10940 - Downloads: 424 + Likes: 19 + Views: 11239 + Downloads: 468 - GameBananaType: Map GameBananaId: 211710 Name: Ideas, Ideas... @@ -3875,8 +4117,8 @@ anything, really. Chapter 1, Jumpless Journey Basically, you can't climb, jump or walljump. Only move & dash. The strawberries here are pretty easy, honestly. Likes: 7 - Views: 2617 - Downloads: 40 + Views: 2624 + Downloads: 41 - GameBananaType: Map GameBananaId: 211706 Name: Celestial Doomsday @@ -3892,8 +4134,8 @@ obscure tech will be explained more in detail once you encounter it for the first time. "Climbing a mountain is never easy" Likes: 6 - Views: 4402 - Downloads: 45 + Views: 4450 + Downloads: 47 - GameBananaType: Map GameBananaId: 211674 Name: Farewell ?-side @@ -3903,7 +4145,7 @@ so that I can improve this map. I would say this map is pretty difficult and requires the techniques used in Farewell along with the neutral jump Likes: 1 - Views: 2073 + Views: 2088 Downloads: 42 - GameBananaType: Map GameBananaId: 211644 @@ -3956,8 +4198,8 @@ Cp4: https://www.youtube.com/watch?v=v1tvoI-nB6c Cp5: https://www.youtube.com/watch?v=CnJsQQWrmiM Cp6: https://www.youtube.com/watch?v=nbY1stUuf4Y' Likes: 9 - Views: 7008 - Downloads: 54 + Views: 7079 + Downloads: 57 - GameBananaType: Gamefile GameBananaId: 12664 Name: Crystalline Helper @@ -3965,42 +4207,47 @@ Description: Miscellaneous objects focused on crystals Text: 'A helper mod, focusing on adding cool new crystals. These were going to be used in my mappack, but I got too lazy to work on that, so I''m releasing these - publicly. I might be a bit lazy regarding bug fixes, but feel free to report anything - by pinging me in #modding-feedback in the Celeste server. Time Crystal: A crystal - that, when touched, stops time for every other entity! Looks pretty cool, I think. - Fill Crystal: Simple crystal that gives you the ability to dash if you don''t - already have it. Star Crystal: When used, it grants the player invincibility, - infinite dashes and infinite stamina for a short period of time. And gives them - rainbow hair. Tele Crystal: Instantly teleports the player as far as they can - go in the direction it''s pointing. This has the potential to freeze the game - if the player never gets stopped, so be careful. Linked Move Blocks and Linked - Move Block Trigger: A variety of move block that can be linked together in a group - by giving them a number, and can be remotely activated by activating a trigger - with that number. Default is just a grey version of a move block that doesn''t - behave differently from normal move blocks. No Dash, No Grab, No Jump Triggers: - Triggers that prevent you from performing the associated action when you are inside - of them. Player Timestop Trigger: When the player enters this, they get frozen - in time. They can still be pushed around though! Keyberry: A berry that, when - collected, will open any doors nearby. A 1-up will unlock every door in the room. - Reset Door Trigger: When entered, it will respawn all doors in the level, and - the keys or keyberries that opened them. Custom Prologue Bridge and Activator: - A customizable collapsing bridge! You can control the order they fall in, how - long between each bridge, and how fast the bridges collapse. Locked Intro Car: - I hope you didn''t lock your keys inside. Custom Wind Trigger: A fully customizable - wind creator. You can control the horizontal and vertical speed, create wind cycles, - and other cool things. Custom Wind Snow: Custom snow to go with your custom wind. - Choose colors, amount, and visual speed. Note that only custom wind snow visually - indicates diagonal wind, so if you wanna do that, use this. Bumper Booster: A - custom booster that launches you like a bumper when you exit it. Trigger Trigger: - A trigger that can activate other designated triggers based on a flag, or after - a certain amount of time! Can be chained with several trigger triggers to make - chain reactions, or create a loop of 2 or more triggers cycling between each other. - Force Dash Crystal: Another crystal, this one being a forced dash in a specific - direction. It doesn''t cost a dash, or give any back, and works even in dashless - levels.' + publicly. Feel free to report anything by pinging me in #modding-feedback in the + Celeste server, @vitellary#1950. Time Crystal: A crystal that, when touched, stops + time for every other entity! Looks pretty cool, I think. Also, has an alternative + form that only unfreezes time when you run out of dashes. Fill Crystal: Simple + crystal that gives you the ability to dash if you don''t already have it. Star + Crystal: When used, it grants the player invincibility, infinite dashes and infinite + stamina for a short period of time. And gives them rainbow hair. Tele Crystal: + Instantly teleports the player as far as they can go in the direction it''s pointing. + This has the potential to freeze the game if the player never gets stopped, so + be careful. Linked Move Blocks and Linked Move Block Trigger: A variety of move + block that can be linked together in a group by giving them a number, and can + be remotely activated by activating a trigger with that number. Default is just + a grey version of a move block that doesn''t behave differently from normal move + blocks. No Dash, No Grab, No Jump Triggers: Triggers that prevent you from performing + the associated action when you are inside of them. Player Timestop Trigger: When + the player enters this, they get frozen in time. They can still be pushed around + though! Keyberry: A berry that, when collected, will open any doors nearby. A + 1-up will unlock every door in the room. Reset Door Trigger: When entered, it + will respawn all doors in the level, and the keys or keyberries that opened them. + Custom Prologue Bridge and Activator: A customizable collapsing bridge! You can + control the order they fall in, how long between each bridge, and how fast the + bridges collapse. Locked Intro Car: I hope you didn''t lock your keys inside. + Custom Wind Trigger: A fully customizable wind creator. You can control the horizontal + and vertical speed, create wind cycles, and other cool things. Custom Wind Snow: + Custom snow to go with your custom wind. Choose colors, amount, and visual speed. + Note that only custom wind snow visually indicates diagonal wind, so if you wanna + do that, use this. Bumper Booster: A custom booster that launches you like a bumper + when you exit it. Trigger Trigger: A trigger that can activate other designated + triggers, based on many different possible conditions! Can be chained with several + trigger triggers to make chain reactions, or create a loop of 2 or more triggers + cycling between each other. As of version 1.8.0, it also comes with several possible + activation conditions, allowing for intricate contraptions based on any number + of player actions. I take suggestions too, feel free to ping me and I''ll see + what I can add! Force Dash Crystal: Another crystal, this one being a forced dash + in a specific direction. It doesn''t cost a dash, or give any back, and works + even in dashless levels. Edit Depth Trigger: A simple trigger that will change + the depth of the specified entities that are colliding with it. Comes with a simple + debug function to help usage.' Likes: 10 - Views: 5381 - Downloads: 128 + Views: 5849 + Downloads: 136 - GameBananaType: Map GameBananaId: 211617 Name: Abandoned City @@ -4013,8 +4260,8 @@ Geodoc slons Akri Dabba Hydro0 Also big thanks to #map_making (in the Celeste discord) and everyone for helping me on my first map! Have fun dying playing!' Likes: 2 - Views: 2913 - Downloads: 52 + Views: 2930 + Downloads: 54 - GameBananaType: Map GameBananaId: 211606 Name: Hard Old Site (WIP) @@ -4037,12 +4284,12 @@ looks rough in level select, don´t worry, still working on it. Its my first map. Have fun dying!' Likes: 3 - Views: 1482 - Downloads: 24 + Views: 1495 + Downloads: 25 - GameBananaType: Map GameBananaId: 211580 Name: Ghost Block Gauntlet - Authors: [Reaver of Souls, max480] + Authors: [Reaver of Souls, max480, SpoopySoup] Description: A map built around a glitch? Surely it's bad... unless? Text: This map is built entirely around a glitch I discovered that I dubbed the Ghost Block. The glitch is consistent and easy to understand. Navigate twenty @@ -4052,9 +4299,9 @@ graphics for the level select and end screen, but the gameplay is all there! Dependencies include DJ Map Helper and max480's Helping Hand. Make sure they're installed before proceeding! - Likes: 4 - Views: 2787 - Downloads: 69 + Likes: 5 + Views: 2987 + Downloads: 70 - GameBananaType: Gamefile GameBananaId: 12617 Name: Randomizer Chinese Lang Pack @@ -4064,7 +4311,7 @@ Randomizer Chinese language package is not integrated into the Randomizer, as it depends on a large extended Chinese font, so I released it as a separate mod. Likes: 0 - Views: 737 + Views: 746 Downloads: 14 - GameBananaType: Gamefile GameBananaId: 12616 @@ -4081,7 +4328,7 @@ \ ExtendedChineseFont\r\n Version: 1.0.0\r\n - Name: Randomizer\r\n \ \ Version: 0.4.6" Likes: 0 - Views: 1042 + Views: 1077 Downloads: 16 - GameBananaType: Gamefile GameBananaId: 12614 @@ -4112,7 +4359,7 @@ (will be removed) Create portal trigger (broken will crash the game) Custom City Satellite (custom dash code works but the colors on the screen don't change) Likes: 0 - Views: 2038 + Views: 2075 Downloads: 15 - GameBananaType: Map GameBananaId: 211548 @@ -4145,8 +4392,8 @@ my questions about making custom maps. It took 4 months to make this, and it''s been a fun ride. Enjoy!' Likes: 19 - Views: 17539 - Downloads: 191 + Views: 18238 + Downloads: 208 - GameBananaType: Gamefile GameBananaId: 12592 Name: Contort Helper @@ -4175,7 +4422,7 @@ \ will need to add it as a dependency, so players who install your map will also\ \ install this helper. To do so, add this helper to your dependencies in your\ \ everest.yaml, as below: - Name: YourModName\r\n Version: 1.0.0\r\n Dependencies:\r\ - \n\t- Name: ContortHelper\r\n\t Version: 1.4.0\r\n Backdrops High-Resolution\ + \n\t- Name: ContortHelper\r\n\t Version: 1.4.1\r\n Backdrops High-Resolution\ \ backdrops is one of Contort Helper's specialties! Although only one is implemented,\ \ it is planned that there will be a system for creating your own high-resolution\ \ backdrops, as well as more high-resolution backdrops for mappers to use! As\ @@ -4237,8 +4484,9 @@ \ your own custom effect/shader, you can message me on Discord at Mün#0001 or\ \ ping me in the Official Celeste Discord Server. Rainbow: An effect/shader that\ \ gives off a rainbow hue. Light-Beams: An effect/shader that adds a sine of moving\ - \ light-beams. Internal Contort Helper can also be interpreted as a Helper Helper,\ - \ as there is lots of internal code that makes life easier for coding mods. Backdrops\ + \ light-beams. Multiverse: An effect/shader that bends your surroundings around\ + \ you! Internal Contort Helper can also be interpreted as a Helper Helper, as\ + \ there is lots of internal code that makes life easier for coding mods. Backdrops\ \ Manager: A manager that handles custom backdrops and cleans up lots of boiler-plate\ \ code. More information about this manager can be seen in the description in\ \ the Backdrops section. Effects/Shader Manager: A manager that handles compiled\ @@ -4252,8 +4500,8 @@ \ strings to a Color or an Ease.Easer. Storage Dictionaries: Dictionaries that\ \ can be called internally and give off an easier access of values." Likes: 10 - Views: 7010 - Downloads: 166 + Views: 7598 + Downloads: 181 - GameBananaType: Map GameBananaId: 211523 Name: Crimson Temple @@ -4267,8 +4515,8 @@ - 6 berries - 3 custom songs - 1 moonberry - 1 intro car - Only vanilla mechanics - A stupid debug room Thanks again to all the playtesters of this map !' Likes: 8 - Views: 4570 - Downloads: 63 + Views: 4593 + Downloads: 66 - GameBananaType: Gui GameBananaId: 35829 Name: Celest @@ -4277,8 +4525,8 @@ Text: Cursed Celeste titlescreen. thats it more GUI "Improvements" might be coming soon Likes: 2 - Views: 2176 - Downloads: 10 + Views: 2230 + Downloads: 12 - GameBananaType: Gui GameBananaId: 35828 Name: Prayeline @@ -4286,8 +4534,8 @@ Description: Madeline summons the demons Text: Madeline summons the demons Likes: 6 - Views: 2873 - Downloads: 31 + Views: 2933 + Downloads: 34 - GameBananaType: Map GameBananaId: 211500 Name: Storm Canyon @@ -4300,8 +4548,8 @@ golden ending Iamdadbod''s face Why are you still reading this? go and play that map!' Likes: 7 - Views: 5789 - Downloads: 97 + Views: 5813 + Downloads: 102 - GameBananaType: Map GameBananaId: 211493 Name: Whispers of the Heart @@ -4338,8 +4586,8 @@ area and Sunset Metropolis, alongside dozens of tweaks and bugfixes, some reworked parts and new sections!' Likes: 2 - Views: 4239 - Downloads: 60 + Views: 4263 + Downloads: 63 - GameBananaType: Map GameBananaId: 211462 Name: City of Madness @@ -4350,8 +4598,8 @@ -Weird, crazy and colorful visuals -4 berries Difficulty: Advanced - Expert (I Urge you to check out my other maps. Trust me they aren''t this bad)' Likes: 3 - Views: 4231 - Downloads: 52 + Views: 4256 + Downloads: 55 - GameBananaType: Map GameBananaId: 211457 Name: Strawberry Festival! @@ -4362,8 +4610,8 @@ 50 berries total to find, obtaining 40 of them to open up that strawberry gate should be no problem! Likes: 3 - Views: 2053 - Downloads: 35 + Views: 2061 + Downloads: 37 - GameBananaType: Map GameBananaId: 211420 Name: 'Frozen Heights (Now with chapter 3: Frost Complex)' @@ -4372,13 +4620,13 @@ iamdadbod, DanTKO, Marcossanches] Description: Madeline's plane crashes on an unexplored cold mountain. Text: 'After messing around in Ahorn I found a lot of unique ways to use mechanics - like ice and water and decided to create a small ice-themed campaign! The music - is all from the Ape Escape series of games and I made sure the environments fit - with the music. All 3 chapters have very unique gameplay so make sure to try them - all. This mod includes: 3 chapters 31 berries 10 custom songs custom resprites - including berries, the level select card and overworld A mix of vanilla and mod - mechanics 2 moonberries A lot of secrets The first chapter in this mod is intermediate - to advanced difficulty with a lot of tech that is learned while playing the level. + like ice and water and decided to create an ice-themed campaign! The music is + all from the Ape Escape series of games and I made sure the environments fit with + the music. All 3 chapters have very unique gameplay so make sure to try them all. + This mod includes: 3 chapters 31 berries 10 custom songs custom resprites including + berries, the level select card and overworld A mix of vanilla and mod mechanics + 2 moonberries A lot of secrets The first chapter in this mod is intermediate to + advanced difficulty with a lot of tech that is learned while playing the level. Some tech taught in the level includes: Neutral jumps, Wavedashes, Superdashes, Waterdashes, Cloud Spike Jumps, Cloud Hyperdashes, and Cloud Superdashes. Wall bounces are not taught and some berries may require other tech. The second chapter @@ -4390,20 +4638,20 @@ difficulty quite a bit harder for players without obscure tech knowledge (most players). However the new mechanics work with the theme of the map and shouldn''t be too hard to learn. There are multiple secrets that require demo dashing. If - anyone needs to contact me, my discord is Cabob#0284 I''d like to thanks all of + anyone needs to contact me, my discord is Cabob#6566 I''d like to thank all of my playtesters from the Iamdadbod discord, you guys were a great help and made the map much less jank. Theta and RamenTwig get extra special shoutouts for playtesting everything in both chapters and for giving very helpful feedback. I''d also like - to thanks DanTKO for helping with chapters 3''s deco placing things like SNOW - DECALS (god those are annoying) and more girders. Song credits: Leve select theme: - https://youtu.be/Ce1MjZQWuPA Chapter 1: Checkpoint 1 & 2 - https://youtu.be/SNZouQtCXVI - Checkpoint 3 - https://youtu.be/XYi-zuFRGUE Chapter 2: Checkpoint 1 - https://youtu.be/FGnCFRbMSbk - Checkpoint 2 - https://youtu.be/Tqa_3HMA5Ls Checkpoint 3 - https://youtu.be/7jB9S3cE0MQ - Chapter 3: Checkpoint 1: https://youtu.be/2WJ9aI1StXs Checkpoint 2: https://youtu.be/FeNio202T5U - Checkpoint 3: https://youtu.be/O5kr7fWLqQ4 Secret rooms: https://youtu.be/JzGnzkNKDAM' + to thank DanTKO for helping with chapters 3''s deco placing things like SNOW DECALS + (god those are annoying) and more girders. Song credits: Leve select theme: https://youtu.be/Ce1MjZQWuPA + Chapter 1: Checkpoint 1 & 2 - https://youtu.be/SNZouQtCXVI Checkpoint 3 - https://youtu.be/XYi-zuFRGUE + Chapter 2: Checkpoint 1 - https://youtu.be/FGnCFRbMSbk Checkpoint 2 - https://youtu.be/Tqa_3HMA5Ls + Checkpoint 3 - https://youtu.be/7jB9S3cE0MQ Chapter 3: Checkpoint 1: https://youtu.be/2WJ9aI1StXs + Checkpoint 2: https://youtu.be/FeNio202T5U Checkpoint 3: https://youtu.be/O5kr7fWLqQ4 + Secret rooms: https://youtu.be/JzGnzkNKDAM' Likes: 9 - Views: 15331 - Downloads: 157 + Views: 15843 + Downloads: 162 - GameBananaType: Map GameBananaId: 211433 Name: Facing Fears [WIP] @@ -4415,8 +4663,8 @@ is required, just the basic moveset (though some strawbs may involve early B-side tricks like jumping out of space jam). Likes: 1 - Views: 1959 - Downloads: 23 + Views: 1968 + Downloads: 24 - GameBananaType: Gamefile GameBananaId: 12531 Name: Vortex Helper @@ -4460,8 +4708,8 @@ to add this helper to your map, use the following text for the dependency: - Name: VortexHelper Version: 1.1.0' Likes: 8 - Views: 5421 - Downloads: 101 + Views: 5572 + Downloads: 105 - GameBananaType: Map GameBananaId: 211411 Name: Overgrowth @@ -4474,7 +4722,7 @@ chapters, or B - Sides. Required tech: Wallbouncing Neutral jumps Wavedashing Wavedashing out of Bubbles' Likes: 4 - Views: 2825 + Views: 2832 Downloads: 32 - GameBananaType: Map GameBananaId: 211407 @@ -4491,8 +4739,8 @@ Completion without moonberry (also requires video) MetallicSaladFork EricJ_Math squeali0 Comet Likes: 2 - Views: 6314 - Downloads: 77 + Views: 6347 + Downloads: 80 - GameBananaType: Tool GameBananaId: 6852 Name: More Portraits, Decals, and Stylegrounds @@ -4510,8 +4758,8 @@ as much as possible). If anyone wants any specific portraits made, feel free to tell me and they might get done. I have a few portraits that I still need to make. Likes: 0 - Views: 2789 - Downloads: 42 + Views: 2848 + Downloads: 46 - GameBananaType: Map GameBananaId: 211358 Name: Uncanny Valley @@ -4522,8 +4770,8 @@ the techniques you need to beat it. In total there are 5 Strawberries and a Crystal Heart at the end. Likes: 2 - Views: 2331 - Downloads: 85 + Views: 2357 + Downloads: 86 - GameBananaType: Gamefile GameBananaId: 12484 Name: Viv's Helper @@ -4671,8 +4919,8 @@ the Celeste Modding Discord or on Discord @Viv#1113. You can also submit bugfixes (for now) here, on my bugfixing Google Doc.' Likes: 11 - Views: 9874 - Downloads: 252 + Views: 10333 + Downloads: 300 - GameBananaType: Map GameBananaId: 211340 Name: Forsaken Fortress @@ -4682,7 +4930,7 @@ Skill level required should be around Reflection-Summit level. Also some mild profanity. I plan on making this into a full campaign in the near future. Likes: 1 - Views: 1842 + Views: 1855 Downloads: 23 - GameBananaType: Map GameBananaId: 211331 @@ -4691,7 +4939,7 @@ Description: '' Text: This set contains almost no safe ground! Likes: 0 - Views: 982 + Views: 985 Downloads: 43 - GameBananaType: Map GameBananaId: 211318 @@ -4704,8 +4952,8 @@ helper she told me so thats also coo! also the Grass tileset was made by nikko! they cool 2! Likes: 1 - Views: 1634 - Downloads: 22 + Views: 1652 + Downloads: 23 - GameBananaType: Gamefile GameBananaId: 12474 Name: Honly Helper @@ -4732,8 +4980,8 @@ If you have feedback / want anything, don''t hesitate to ping me on the Celeste Discord!' Likes: 6 - Views: 5005 - Downloads: 59 + Views: 5059 + Downloads: 63 - GameBananaType: Tool GameBananaId: 6850 Name: Memorial Helper @@ -4751,8 +4999,8 @@ it. The sequence format is defined by a string of numbers 0-7 like so: 1 2 3 0 x 4 7 6 5 So [ up, down, down, up-right ] would be 2663' Likes: 5 - Views: 8700 - Downloads: 341 + Views: 9056 + Downloads: 361 - GameBananaType: Map GameBananaId: 211289 Name: MacaHotel @@ -4763,7 +5011,7 @@ Warning: some places are very trippy. If you want a room inside the hotel, DM me in discord (#4384). PS: map sucks its poorly made dont play it.' Likes: 3 - Views: 2196 + Views: 2200 Downloads: 33 - GameBananaType: Map GameBananaId: 211261 @@ -4779,8 +5027,8 @@ thanks to Nerferd for the amazing artwork Dependencies: Extended Variant Mode Isa''s Grab Bag Viv''s Helper DJMapHelper' Likes: 11 - Views: 8202 - Downloads: 153 + Views: 8269 + Downloads: 163 - GameBananaType: Map GameBananaId: 211260 Name: Ridgevator @@ -4789,8 +5037,8 @@ Text: 'A short, easy Golden Ridge-themed map focused around sinking platforms. Features: 15 rooms 8 strawberries Easy difficulty' Likes: 1 - Views: 1208 - Downloads: 19 + Views: 1212 + Downloads: 21 - GameBananaType: Map GameBananaId: 211257 Name: Rhythm Universe @@ -4811,8 +5059,8 @@ errors, feel free to report them in the comments, or on my Discord (Ezel#5709). I hope you''ll enjoy the map. :)' Likes: 8 - Views: 5796 - Downloads: 86 + Views: 5837 + Downloads: 90 - GameBananaType: Map GameBananaId: 211240 Name: Bing World @@ -4826,8 +5074,8 @@ require no advanced speed tech to complete, but for the bonuses and B/C-sides, anything is on the table.' Likes: 3 - Views: 2414 - Downloads: 25 + Views: 2448 + Downloads: 26 - GameBananaType: Tool GameBananaId: 6848 Name: Celeste Randomizer @@ -4840,8 +5088,8 @@ maps to draw rooms from, and more. You can even make it work with your custom maps! For more information, check out the project page at https://github.com/rhelmot/CelesteRandomizer Likes: 23 - Views: 63228 - Downloads: 890 + Views: 64295 + Downloads: 983 - GameBananaType: Map GameBananaId: 211204 Name: Solaris @@ -4869,8 +5117,8 @@ Checkpoints 4-5: https://www.youtube.com/watch?v=yfiU11rmCCk Checkpoint 6/Final Screen: https://www.youtube.com/watch?v=cppRxHfmY40 Secrets: https://www.youtube.com/watch?v=Qy_elE51Zbw' Likes: 17 - Views: 20913 - Downloads: 384 + Views: 21150 + Downloads: 413 - GameBananaType: Tool GameBananaId: 6846 Name: EmoteMod @@ -4903,8 +5151,8 @@ discord and ping @Desant. Support me Also if you want to see what I am doing click here' Likes: 4 - Views: 8568 - Downloads: 126 + Views: 8919 + Downloads: 139 - GameBananaType: Map GameBananaId: 211181 Name: Celestial Garden @@ -4917,8 +5165,8 @@ and 1 cassette to collect. Edit: Fixed a couple cheeses and bugs, as well as added pandora''s box to the dependencies Edit 2: Fixed a couple rooms' Likes: 8 - Views: 6496 - Downloads: 124 + Views: 6533 + Downloads: 128 - GameBananaType: Gamefile GameBananaId: 12386 Name: Clover Helper @@ -4931,9 +5179,9 @@ for now) - INSTANT TELEPORT TRIGGER Teleport just like in farewell! Set the room you are in (ex. a-00) and the room you want to go to (ex. a-01) and you instantly teleport! (Warning, Buggy mess. Don't complain if there is a weird bug) - Likes: 3 - Views: 3912 - Downloads: 50 + Likes: 4 + Views: 3957 + Downloads: 53 - GameBananaType: Map GameBananaId: 211167 Name: Return To The Mountain @@ -4942,8 +5190,8 @@ Text: Hello! This is my first campaign. I hope you like it! Thanks to the playtesters for playtesting my map. There are secrets too. Really detailed ones. Likes: 2 - Views: 2757 - Downloads: 38 + Views: 2792 + Downloads: 39 - GameBananaType: Gamefile GameBananaId: 12382 Name: Communal Helper @@ -5043,8 +5291,8 @@ \ this helper as part of your map, put the text below into the Dependencies: section\ \ of your everest.yaml: - Name: CommunalHelper\r\n Version: 1.6.2" Likes: 12 - Views: 11363 - Downloads: 215 + Views: 11653 + Downloads: 231 - GameBananaType: Wip GameBananaId: 52178 Name: Celeste Battle Royale @@ -5054,7 +5302,7 @@ Large Map, New Mechanics and shooting with Guneline all combined in this event. The map and Event Date coming soon! Stay tuned.' Likes: 4 - Views: 1784 + Views: 1814 Downloads: 0 - GameBananaType: Map GameBananaId: 211127 @@ -5065,7 +5313,7 @@ unlock the B sides where the real fun begins. About 25 one screen puzzles, have fun! Likes: 4 - Views: 2532 + Views: 2580 Downloads: 41 - GameBananaType: Map GameBananaId: 211121 @@ -5083,8 +5331,8 @@ wanted to implement, go for it (you need to perform wall bounces and wavedashes though, but that is mostly in the beginning).' Likes: 1 - Views: 1949 - Downloads: 25 + Views: 1954 + Downloads: 26 - GameBananaType: Skin GameBananaId: 179304 Name: Theo Mod @@ -5095,8 +5343,8 @@ and disable madeline's hair through the mod options, this is not a mod finished, so strange things can happen during your journey. Likes: 4 - Views: 7414 - Downloads: 130 + Views: 7660 + Downloads: 139 - GameBananaType: Gui GameBananaId: 35741 Name: Celese @@ -5104,8 +5352,8 @@ Description: Celese Text: Replaces the game's title screen with "Celese". Don't ask why. Likes: 8 - Views: 2341 - Downloads: 22 + Views: 2401 + Downloads: 25 - GameBananaType: Effect GameBananaId: 6528 Name: Hyperline @@ -5136,8 +5384,8 @@ only edit strings on the main menu mod options (this is a limitation of Everest as far as I can tell). Map integration will be coming back soon.' Likes: 5 - Views: 12280 - Downloads: 162 + Views: 12812 + Downloads: 196 - GameBananaType: Gamefile GameBananaId: 12320 Name: Hitbox Fixer @@ -5150,8 +5398,8 @@ are correct. Enabling this mod will also affect the appearance of certain game elements such as shielded feathers. Likes: 1 - Views: 3385 - Downloads: 37 + Views: 3457 + Downloads: 40 - GameBananaType: Map GameBananaId: 211062 Name: Macaroni Boi's Random Maps @@ -5161,8 +5409,8 @@ is from 2b to farewell so... idk play them or not. Map list: Forsaken City 2 2fast4me [coming soon]' Likes: 1 - Views: 1430 - Downloads: 45 + Views: 1441 + Downloads: 46 - GameBananaType: Map GameBananaId: 211060 Name: Flying through the Spikes @@ -5173,8 +5421,8 @@ has 19 rooms. Also it may be easy for some of the pros but how bout the pros try golden for the whole map then... hope you like the map time Likes: 3 - Views: 1353 - Downloads: 75 + Views: 1375 + Downloads: 76 - GameBananaType: Map GameBananaId: 211027 Name: Partnership @@ -5203,8 +5451,8 @@ You can watch the video of the completion here. Tech: Wavedashing or Extended Hypers Wallbouncing Jumps at Maximum Height Throwing?' Likes: 5 - Views: 16687 - Downloads: 137 + Views: 16908 + Downloads: 151 - GameBananaType: Map GameBananaId: 211012 Name: Smash Bros Celeste Edition @@ -5213,7 +5461,7 @@ Text: Basically one map, with one room where you can play pvp with your friends if they have a mod called CelesteNet. Likes: 3 - Views: 2134 + Views: 2198 Downloads: 36 - GameBananaType: Map GameBananaId: 210993 @@ -5226,8 +5474,8 @@ c-sides and chapter 9 (hypers, wavedashes, wallbounces, etc.) + neutrals (and optional demodashes for some secrets too) Have fun! Likes: 2 - Views: 1794 - Downloads: 24 + Views: 1798 + Downloads: 25 - GameBananaType: Skin GameBananaId: 179068 Name: No-Backpack Other-Self @@ -5239,8 +5487,8 @@ this other mod. "her backpack is an air sac, like a frog." -Crimson_Smiles, 2020 "So we removed it." -Spoopy, 2020 Likes: 5 - Views: 5848 - Downloads: 145 + Views: 5983 + Downloads: 150 - GameBananaType: Gamefile GameBananaId: 12267 Name: CelesteNet @@ -5255,8 +5503,8 @@ try. For more information, especially regarding how the server logs data, and to register your account, visit the CelesteNet website. Likes: 33 - Views: 92105 - Downloads: 2078 + Views: 94324 + Downloads: 2279 - GameBananaType: Map GameBananaId: 210984 Name: Remirrored @@ -5277,8 +5525,8 @@ made at that time, with minimal custom things and so on, so this might not be as impressive by today''s standards.' Likes: 4 - Views: 5537 - Downloads: 99 + Views: 5573 + Downloads: 104 - GameBananaType: Map GameBananaId: 210964 Name: Johnystar's first attempt @@ -5286,7 +5534,7 @@ Description: A short and sweet map Text: My first attempt at publishing a Celeste mod on GameBanana. Easter eggs inside. Likes: 0 - Views: 679 + Views: 684 Downloads: 32 - GameBananaType: Map GameBananaId: 210940 @@ -5299,7 +5547,7 @@ Soon there will be more! (but not too soon cause big map take moar time) (ya gunline fix) Likes: 2 - Views: 1728 + Views: 1743 Downloads: 35 - GameBananaType: Map GameBananaId: 210887 @@ -5322,8 +5570,8 @@ Also shoutouts to Cr33pyCat for getting the golden on both versions of the map. Insane gamer. Also shoutouts to Clantis for getting the golden on the new version.' Likes: 13 - Views: 21399 - Downloads: 365 + Views: 22226 + Downloads: 377 - GameBananaType: Map GameBananaId: 210855 Name: The Climbing Blind Trilogy @@ -5339,8 +5587,8 @@ Map making - NotYourBadeline Playtesting - Benjamanian, Percussive Additional Assets- NotYourBadeline Stream Playtesting - Benjamanian' Likes: 2 - Views: 4572 - Downloads: 50 + Views: 4594 + Downloads: 51 - GameBananaType: Map GameBananaId: 210825 Name: The Well @@ -5353,8 +5601,8 @@ base game. Helpers are there to make things easier to build, not to introduce new things. They are all technically predictable)' Likes: 3 - Views: 4712 - Downloads: 84 + Views: 4819 + Downloads: 88 - GameBananaType: Map GameBananaId: 210783 Name: What Could've Been (Now with a B-side) @@ -5368,8 +5616,8 @@ (but now it has a b-side, so its only kinda small) (P.S. The name has no association to any thing with the exact same name, if there are even things with that name) Likes: 7 - Views: 4751 - Downloads: 81 + Views: 4761 + Downloads: 82 - GameBananaType: Skin GameBananaId: 178712 Name: KiyoMod [BETA] @@ -5387,8 +5635,8 @@ Everything in this mod is free to use, so go nuts. I also added some fun lil things on some of Kiyo's animations, so look for that. Likes: 1 - Views: 3051 - Downloads: 24 + Views: 3100 + Downloads: 25 - GameBananaType: Wip GameBananaId: 52093 Name: Celeste Greek Translation @@ -5399,7 +5647,7 @@ for a beta version is out right now. The entire game has been translated. With all that said, cheers. Likes: 0 - Views: 890 + Views: 900 Downloads: 2 - GameBananaType: Map GameBananaId: 210778 @@ -5412,8 +5660,8 @@ Settings: Up - W Left - A Right - D Down - S Jump - Shift Good luck killing each other!' Likes: 0 - Views: 1627 - Downloads: 81 + Views: 1638 + Downloads: 86 - GameBananaType: Gamefile GameBananaId: 12131 Name: Guneline @@ -5428,8 +5676,8 @@ invincible but it isn't an issue because, well, CelesteNet is arriving in a month or so). Have fun and happy shooting! Likes: 13 - Views: 14905 - Downloads: 163 + Views: 15077 + Downloads: 165 - GameBananaType: Map GameBananaId: 210747 Name: Celestial Lands @@ -5437,8 +5685,8 @@ Description: These are lots of fun, and short too! Text: Try these maps out! Likes: 1 - Views: 1483 - Downloads: 27 + Views: 1497 + Downloads: 29 - GameBananaType: Map GameBananaId: 210730 Name: Quickie Mountain @@ -5453,8 +5701,8 @@ levels. Level design, gameplay, and playtesting by frozenflygone. Music, visuals, and implementation into Celeste itself by BeanJammin. Likes: 5 - Views: 4995 - Downloads: 83 + Views: 5014 + Downloads: 86 - GameBananaType: Map GameBananaId: 210705 Name: Hydro's Campaign (Temp Name) @@ -5465,8 +5713,8 @@ Difficulty for prologue is about 7B difficulty. Tech Required (so far): Spike Jumps (with setup) Dashless Cornerboost (prologue moon berry)' Likes: 2 - Views: 2654 - Downloads: 21 + Views: 2656 + Downloads: 22 - GameBananaType: Map GameBananaId: 210628 Name: Astral Tower @@ -5486,8 +5734,8 @@ supposed to be doing sometimes, so if you get too stuck please take a look at my playthrough video.' Likes: 4 - Views: 9025 - Downloads: 128 + Views: 9084 + Downloads: 130 - GameBananaType: Map GameBananaId: 210555 Name: The Meat Of The D Sides @@ -5495,7 +5743,7 @@ Description: '' Text: I have created something terrible. I apologize, but not really. Likes: 1 - Views: 2988 + Views: 2996 Downloads: 34 - GameBananaType: Map GameBananaId: 210490 @@ -5514,8 +5762,8 @@ Set-Up Spike Jumps Regular Jumps Regular Dashes Contact YouTube (join!) Discord Twitter' Likes: 3 - Views: 11537 - Downloads: 68 + Views: 11917 + Downloads: 72 - GameBananaType: Gamefile GameBananaId: 11936 Name: Glyph Audio @@ -5525,8 +5773,8 @@ next glyph update will require this mod to run** If you dont have the mod get it here: https://gamebanana.com/maps/209296 Listen to the music here: https://mwhatt.bandcamp.com/releases' Likes: 2 - Views: 11524 - Downloads: 491 + Views: 11747 + Downloads: 516 - GameBananaType: Map GameBananaId: 210292 Name: Frosted Cavern @@ -5537,8 +5785,8 @@ includes both the old and new versions. (Note, the old version is very jank). So far, the new version only has the A side, with 12 berries and a Cassette. Likes: 2 - Views: 6803 - Downloads: 82 + Views: 6836 + Downloads: 84 - GameBananaType: Map GameBananaId: 210273 Name: City in the Sky @@ -5553,8 +5801,8 @@ -cassette tape (no b-side) -Crystal heart -1 moon berry Anyways that''s it, and I hope you enjoy my map! :D' Likes: 4 - Views: 4976 - Downloads: 77 + Views: 4994 + Downloads: 80 - GameBananaType: Wip GameBananaId: 51944 Name: Celeste Romanian Translation @@ -5562,8 +5810,8 @@ Description: '' Text: A simple translation to the game's dialog for romanians. Likes: 0 - Views: 994 - Downloads: 4 + Views: 1000 + Downloads: 5 - GameBananaType: Map GameBananaId: 210224 Name: Buried City @@ -5572,8 +5820,8 @@ Text: '"Buried City" is my first Celeste map. It contains four strawberries, a crystal heart and a b-side.' Likes: 1 - Views: 2322 - Downloads: 41 + Views: 2336 + Downloads: 42 - GameBananaType: Map GameBananaId: 210160 Name: Exploration Mod (WIP) @@ -5591,8 +5839,8 @@ have to complete areas backwards. --- Contains: - 101 strawberries - 2 moonberries - 1 golden strawberry' Likes: 6 - Views: 12999 - Downloads: 153 + Views: 13018 + Downloads: 154 - GameBananaType: Map GameBananaId: 210101 Name: Conquerer @@ -5607,8 +5855,8 @@ A Moonberry 3 Key Rooms Lots of Secrets (Intro Car, Cozy Spots, etc.) And yes, I know the Conquerer is spelt wrong...it's intentional. Likes: 5 - Views: 4825 - Downloads: 81 + Views: 4859 + Downloads: 82 - GameBananaType: Map GameBananaId: 210073 Name: Undertale @@ -5616,7 +5864,7 @@ Description: This is the first version of Celeste's Undertale made by Rebecca. Text: This is W.I.P of course. But it's going to get updates very quick. Likes: 0 - Views: 3123 + Views: 3151 Downloads: 156 - GameBananaType: Map GameBananaId: 209942 @@ -5629,8 +5877,8 @@ rooms, mainly focusing on the use of wall bounces, hypers, switch platforms and boosters. This map is still in development. Likes: 3 - Views: 5625 - Downloads: 112 + Views: 5636 + Downloads: 113 - GameBananaType: Map GameBananaId: 209984 Name: The Tech Compendium [On Hiatus] @@ -5665,8 +5913,8 @@ helper project! If you want to help further development, let me know with a ping on the celeste discord.' Likes: 7 - Views: 11713 - Downloads: 187 + Views: 11778 + Downloads: 195 - GameBananaType: Map GameBananaId: 209951 Name: Mount Everest @@ -5680,8 +5928,8 @@ last few rooms Strawberries: 33 + Moon berry and golden berry Length: 80+ rooms +B-Side, C-Side and heart at the end Please don''t spoil secrets from this map' Likes: 14 - Views: 25867 - Downloads: 426 + Views: 26318 + Downloads: 463 - GameBananaType: Map GameBananaId: 209922 Name: Sunset Mountain @@ -5697,8 +5945,8 @@ Max480 for creating a customizable vanilla cutscene for my map, and indirectly helping with fmod owo Chapter 2 coming soon™?' Likes: 7 - Views: 9194 - Downloads: 186 + Views: 9226 + Downloads: 188 - GameBananaType: Map GameBananaId: 209859 Name: Playable Credits @@ -5707,8 +5955,8 @@ Text: The game's credits, but playable! Somebody noticed that the credits' terrain is very speedrunnable, so I made this. Gotta go fast! Likes: 6 - Views: 3993 - Downloads: 64 + Views: 4042 + Downloads: 65 - GameBananaType: Map GameBananaId: 209844 Name: Hello @@ -5725,13 +5973,13 @@ that some of these textures are from. ctrlaltdelicious#2517 on discord if you have more ''specific'' feedback' Likes: 3 - Views: 7595 - Downloads: 127 + Views: 7616 + Downloads: 128 - GameBananaType: Gamefile GameBananaId: 11683 Name: Cherry Helper - Authors: [aridai, People of Mt.Celeste's Mountain Climber Association, pixelator, - Lyren] + Authors: [aridai, People of Mt.Celeste's Mountain Climber Association, DemoJameson, + pixelator, Lyren] Description: A grabbag mod of stuff I come up with. Text: 'A grab-bag mod in the making and constantly growing with mechanics! Lightning Dash Switch - A special Dash Switch that turns off lightning within the room. @@ -5790,11 +6038,12 @@ the player''s state on a whim. Originally made to put the player in/out of Reflection''s intro fall state. However, it can be used with whatever vanilla state you wish to use, with results of varying jankness. It''s highly experimental, so don''t - blame me for crashes if you use this thing with weird states. To add to map: - - Name: CherryHelper Version: 1.6.6' + blame me for crashes if you use this thing with weird states. Audio Play Trigger + - A simplified trigger for playing audio effects when you step in it. That''s + it! To add to map: - Name: CherryHelper Version: 1.6.7' Likes: 4 - Views: 8803 - Downloads: 210 + Views: 9107 + Downloads: 220 - GameBananaType: Gamefile GameBananaId: 11682 Name: Lunatic Helper @@ -5848,8 +6097,8 @@ with multiple colors, as it looks like there is a lot of effects, but there is only 1 being used. Colors: Identical to the custom field''s color.' Likes: 10 - Views: 14919 - Downloads: 535 + Views: 15276 + Downloads: 566 - GameBananaType: Gamefile GameBananaId: 11642 Name: Fancy Tile Entities @@ -5861,8 +6110,8 @@ "Update" in the tile editing window, then "Update" in the regular properties window to save your changes. Comes with a demo map. Likes: 2 - Views: 4312 - Downloads: 71 + Views: 4383 + Downloads: 76 - GameBananaType: Map GameBananaId: 209579 Name: AvapXia's Super Dash Series (WIP) @@ -5890,7 +6139,7 @@ to the no dash challenge in forsaken city) but it''s a lot more difficult and requires lots and lots of precise jumps)' Likes: 4 - Views: 1801 + Views: 1810 Downloads: 45 - GameBananaType: Gamefile GameBananaId: 11588 @@ -5932,8 +6181,8 @@ Effects Shroom Petals: Like the normal petal effect, but can be colored. That''s it ---- If u run into issues hit me up at beefyuncle#9018' Likes: 11 - Views: 10949 - Downloads: 324 + Views: 11122 + Downloads: 339 - GameBananaType: Skin GameBananaId: 177089 Name: Super Mario Skin @@ -5945,8 +6194,8 @@ display your amount of dashes. This skin can be toggled in the Mod Options menu. While the skin is on, your hair is hidden automatically. Likes: 7 - Views: 8331 - Downloads: 230 + Views: 8426 + Downloads: 253 - GameBananaType: Gamefile GameBananaId: 11573 Name: Toggleable Hair @@ -5958,8 +6207,8 @@ ghost's hair in Mod Options. You can also make player hair only shown while star flying. Likes: 1 - Views: 3285 - Downloads: 56 + Views: 3321 + Downloads: 59 - GameBananaType: Map GameBananaId: 209460 Name: Mirror Memories @@ -5984,8 +6233,8 @@ Discord. Update: The Map now contains a secret room that is accessed somewhere in the second checkpoint, feel free to search for it!' Likes: 3 - Views: 6831 - Downloads: 103 + Views: 6844 + Downloads: 108 - GameBananaType: Gamefile GameBananaId: 11514 Name: Brokemia Helper @@ -5996,8 +6245,8 @@ Non-Badeline Moving Blocks, Floatier Space Blocks, Troll Strawberries, Cassette Cassettes, and Cassette Dream Blocks. Likes: 5 - Views: 5308 - Downloads: 165 + Views: 5379 + Downloads: 170 - GameBananaType: Map GameBananaId: 209296 Name: Glyph @@ -6070,8 +6319,8 @@ https://store.steampowered.com/app/666810/Luna/ if you want to use this music for anything please ask first! cheers xoxo' Likes: 64 - Views: 119299 - Downloads: 1715 + Views: 120333 + Downloads: 1844 - GameBananaType: Map GameBananaId: 209267 Name: The Dadsides @@ -6100,9 +6349,9 @@ we''ve decided it''s best to add an option to disable heavy effects! It will be available via Mod Options and you can turn it on and off at will! Disclaimer: You will need to restart the chapter for the option to work.' - Likes: 11 - Views: 19121 - Downloads: 263 + Likes: 12 + Views: 19227 + Downloads: 268 - GameBananaType: Gamefile GameBananaId: 11439 Name: '"Inverted" Controls' @@ -6111,7 +6360,7 @@ Text: '"Inverts" all controls -> when the button is released, the game thinks it''s pressed. An inadvertent expansion on Extended Variant''s Inverted Grab.' Likes: 0 - Views: 1631 + Views: 1640 Downloads: 13 - GameBananaType: Gamefile GameBananaId: 11423 @@ -6256,8 +6505,8 @@ your everest.yaml and include it in the Dependencies section: - Name: YourModName Version: 1.0.0 Dependencies: - Name: MaxHelpingHand Version: 1.12.5' Likes: 15 - Views: 27798 - Downloads: 708 + Views: 28601 + Downloads: 746 - GameBananaType: Map GameBananaId: 209180 Name: Chapter 3 L-Side (Celestial Resort) @@ -6271,8 +6520,8 @@ idea about the tech, feel free to ask or check out my youtube playthrough of it for the intended solutions. Likes: 2 - Views: 6225 - Downloads: 62 + Views: 6759 + Downloads: 69 - GameBananaType: Map GameBananaId: 209165 Name: Trampoline Outskirts @@ -6283,7 +6532,7 @@ is also optimized for speedrunning, so knock yourself out. Includes: - 10+1 strawberries - A cassette - Two cars - Immense comfort - A true pensive moment' Likes: 4 - Views: 2186 + Views: 2192 Downloads: 29 - GameBananaType: Map GameBananaId: 209139 @@ -6304,8 +6553,8 @@ and Spikejump is not required. Two mods are required. FrostHelper and ShroomHelper Sorry for my english.' Likes: 6 - Views: 14040 - Downloads: 137 + Views: 14159 + Downloads: 139 - GameBananaType: Map GameBananaId: 209078 Name: Meme Sides @@ -6320,8 +6569,8 @@ mechanics such as Hypers, Spike and Neutral jumps and other useless shit you will probably see in other maps. God help you. Or Devil. Both probably won''t though.' Likes: 1 - Views: 9016 - Downloads: 408 + Views: 9065 + Downloads: 415 - GameBananaType: Gamefile GameBananaId: 11368 Name: Runtime Entities @@ -6343,7 +6592,7 @@ code modding. After you''re done testing your entity, compile it like you normally would for an Everest code mod. Do not use this mod as a dependency for your map.' Likes: 1 - Views: 1501 + Views: 1504 Downloads: 13 - GameBananaType: Tool GameBananaId: 6790 @@ -6357,7 +6606,7 @@ The snap parameter is optional, in case not provided it defaults to false. Happy mapping! Likes: 0 - Views: 1981 + Views: 1990 Downloads: 12 - GameBananaType: Skin GameBananaId: 176408 @@ -6366,9 +6615,9 @@ Description: '' Text: Simple mod that allows Maddy to have a crown on top, comes with enabled and disabled switch - Likes: 9 - Views: 8056 - Downloads: 370 + Likes: 10 + Views: 8278 + Downloads: 374 - GameBananaType: Map GameBananaId: 208924 Name: Inner Depths @@ -6385,8 +6634,8 @@ importantly) both normal ultras and grounded ultras. While you can neutral, the different physics of core space nullify the need for it.' Likes: 3 - Views: 5456 - Downloads: 105 + Views: 5596 + Downloads: 106 - GameBananaType: Map GameBananaId: 208919 Name: Mystic Cavern @@ -6397,7 +6646,7 @@ harsh on this. Contains: -11 rooms -5 berries (including golden berry) -A badly edited ending picture for fun' Likes: 1 - Views: 1903 + Views: 1908 Downloads: 115 - GameBananaType: Gamefile GameBananaId: 11297 @@ -6410,7 +6659,7 @@ is 9D and that's because it was 9D in which this annoyed me enough that I had to make a mod to fix it. Thanks Moni. Likes: 9 - Views: 4724 + Views: 4931 Downloads: 66 - GameBananaType: Gamefile GameBananaId: 11283 @@ -6421,7 +6670,7 @@ "E" by default You can also spawn jellyfish through debug console typing "spawnjelly" Please don't spawn too many of them Likes: 0 - Views: 3073 + Views: 3091 Downloads: 30 - GameBananaType: Gamefile GameBananaId: 11275 @@ -6443,8 +6692,8 @@ following decal properties: [pollution] Black "smoke" [makeSolids] "makeSolid" but alottathem' Likes: 4 - Views: 5570 - Downloads: 137 + Views: 5650 + Downloads: 141 - GameBananaType: Gamefile GameBananaId: 11274 Name: Batteries @@ -6461,7 +6710,7 @@ infinite batteries, initial charges and much more. All properties are explained in the Ahorn tooltips. Finally, Flag is cool person.' Likes: 3 - Views: 3102 + Views: 3114 Downloads: 38 - GameBananaType: Map GameBananaId: 208846 @@ -6475,8 +6724,8 @@ cases. *(continous neutral jumping up a wall to gain height) Includes: 11 Checkpoints ~ 100 Rooms 37 Strawberries Gameplay with almost all base game mechanics' Likes: 15 - Views: 15223 - Downloads: 253 + Views: 15316 + Downloads: 266 - GameBananaType: Map GameBananaId: 208831 Name: Minileste [Mastar`s Minimaps] - 2/?9? Done @@ -6496,8 +6745,8 @@ Golden Pass 15 rooms Custom Ending Pic. Checkpoints 2 Strawberries 1 Karma Dialogue Alternate Logo' Likes: 7 - Views: 6123 - Downloads: 193 + Views: 6129 + Downloads: 195 - GameBananaType: Map GameBananaId: 208682 Name: (APRIL FOOLS) @@ -6506,7 +6755,7 @@ Text: The Chapter 9 (Farewell) E-Side is the Chapter 9 (Farewell) C-Side of the Chapter 9 (Farewell) D-Side Likes: 2 - Views: 2348 + Views: 2367 Downloads: 37 - GameBananaType: Gamefile GameBananaId: 11185 @@ -6515,7 +6764,7 @@ Description: '' Text: You dummy, you can't stand on clouds! Likes: 3 - Views: 2180 + Views: 2204 Downloads: 9 - GameBananaType: Gamefile GameBananaId: 11138 @@ -6526,8 +6775,8 @@ enable in mod options. Also comes with a configurable trigger for map makers. Many thanks to max480 for considerably improving this mod. Likes: 0 - Views: 4323 - Downloads: 27 + Views: 4425 + Downloads: 28 - GameBananaType: Map GameBananaId: 208410 Name: Solitude @@ -6541,7 +6790,7 @@ 24 Gameplay rooms Difficulty - Expert Tech required - Super/hyper, Reversing, Neutral, Hyper bhop, Max height climb jump. Music can be found Here. Enjoy <3' Likes: 7 - Views: 5564 + Views: 5598 Downloads: 81 - GameBananaType: Gui GameBananaId: 35325 @@ -6552,8 +6801,8 @@ given form by yours truly. Please disregard the glitched reflection and have fun plelele your favourite game! Likes: 0 - Views: 7115 - Downloads: 43 + Views: 7180 + Downloads: 50 - GameBananaType: Map GameBananaId: 208344 Name: Summit One Screen Challenge @@ -6563,7 +6812,7 @@ I would like to thank everyone in the discord community, without them, none of this would be possible, thank you guys. Likes: 2 - Views: 2218 + Views: 2228 Downloads: 30 - GameBananaType: Tool GameBananaId: 6779 @@ -6583,9 +6832,9 @@ everest.yaml. Code mods are not excluded either, you can select your mod''s .dll file too if you are making one. To use the packager, just extract the zip and run the exe within. DISCLAIMER: To my knowledge the packager only runs on Windows!' - Likes: 6 - Views: 4398 - Downloads: 171 + Likes: 7 + Views: 4451 + Downloads: 172 - GameBananaType: Map GameBananaId: 208336 Name: Glitch World @@ -6604,7 +6853,7 @@ some corner boosters and some ultras (the ultras and corner boosters used are very basic because I didn''t want it to be too frustrating).' Likes: 4 - Views: 6407 + Views: 6426 Downloads: 114 - GameBananaType: Gamefile GameBananaId: 11042 @@ -6615,7 +6864,7 @@ to allow video makers to nearly seamlessly merge only the successful takes of each screen in a map, without a noticeable change in the music. Likes: 4 - Views: 1677 + Views: 1684 Downloads: 17 - GameBananaType: Skin GameBananaId: 175525 @@ -6624,8 +6873,8 @@ Description: '):' Text: madeline has cancer Likes: 1 - Views: 4700 - Downloads: 55 + Views: 4742 + Downloads: 59 - GameBananaType: Gamefile GameBananaId: 11024 Name: DeathTracker @@ -6640,8 +6889,8 @@ as placeholders: $C - Deaths of the current attempt $B - Best (lowest death count) clear $A - Total deaths of the current area $T - Total deaths of the save file' Likes: 5 - Views: 13266 - Downloads: 175 + Views: 13411 + Downloads: 183 - GameBananaType: Map GameBananaId: 208141 Name: Relogue @@ -6649,8 +6898,8 @@ Description: A 2nd Prologue Text: A 2nd prologue Likes: 1 - Views: 3083 - Downloads: 64 + Views: 3086 + Downloads: 66 - GameBananaType: Map GameBananaId: 208130 Name: Old Site E-side @@ -6660,7 +6909,7 @@ of dream block tech. A fishtank map. Making a hard map is hard. It's a bin file. So if you want to play it you need to throw it into your Mods folder. Likes: 1 - Views: 2160 + Views: 2173 Downloads: 85 - GameBananaType: Gamefile GameBananaId: 10972 @@ -6676,7 +6925,7 @@ Don't worry, go to the Mod Options menu in the main menu, and change the duration there! Likes: 4 - Views: 4224 + Views: 4287 Downloads: 38 - GameBananaType: Map GameBananaId: 208110 @@ -6685,8 +6934,8 @@ Description: '' Text: Just some random maps. (I didn't learn how to use stylegrounds until CH3) Likes: 0 - Views: 1961 - Downloads: 39 + Views: 1977 + Downloads: 40 - GameBananaType: Gamefile GameBananaId: 10965 Name: '"Dashless" DreamBlocks' @@ -6697,7 +6946,7 @@ use with a mod, add DashlessDreamBlocks as a dependency and call OverrideSettings to force enable this feature. Likes: 1 - Views: 2987 + Views: 3014 Downloads: 26 - GameBananaType: Gamefile GameBananaId: 10950 @@ -6736,8 +6985,8 @@ on Discord. (Or leave a comment, but Discord is recommended if you want me to see it sooner.)' Likes: 7 - Views: 10292 - Downloads: 126 + Views: 10428 + Downloads: 129 - GameBananaType: Gamefile GameBananaId: 10932 Name: Other Self (Dialog Mod) @@ -6756,8 +7005,8 @@ (and not "Badeline" or some equivalent), or else some of the dialogue won''t make sense. Also, for those wondering: yes, I do have permission to upload this.' Likes: 5 - Views: 11182 - Downloads: 106 + Views: 11243 + Downloads: 109 - GameBananaType: Skin GameBananaId: 174920 Name: Flame's Sprite Recolor @@ -6772,8 +7021,8 @@ it or delete it to return to normal sprites in Everest. Enjoy the ability to look a little different locally!' Likes: 3 - Views: 7556 - Downloads: 116 + Views: 7662 + Downloads: 120 - GameBananaType: Map GameBananaId: 207902 Name: Asleep @@ -6803,8 +7052,8 @@ Lost: https://www.youtube.com/watch?v=IVpTEk45SkU Also thanks to Lena Raine for creating this awesome track: Beyond The Heart (Broken Hearts Mix): https://www.youtube.com/watch?v=uUNqDbZdxH8' Likes: 8 - Views: 18750 - Downloads: 223 + Views: 18889 + Downloads: 227 - GameBananaType: Gamefile GameBananaId: 10872 Name: CustomPoints @@ -6815,8 +7064,8 @@ "CustomPoints". Comes with a demonstration map. Currently only supports uppercase letters, numbers, and some punctuation. More will be added later. Likes: 2 - Views: 3648 - Downloads: 112 + Views: 3709 + Downloads: 113 - GameBananaType: Map GameBananaId: 207843 Name: Core Refill @@ -6825,7 +7074,7 @@ Text: This map is very hard and relies on core block hypers. Playing this map is only recommended if you are very comfortable with the movement in the game. Likes: 1 - Views: 2658 + Views: 2678 Downloads: 38 - GameBananaType: Map GameBananaId: 207805 @@ -6843,12 +7092,12 @@ 8 and 9. It is almost impossible to continue with this mechanics without making several modifications (not what I'm looking for)- Likes: 4 - Views: 5985 - Downloads: 58 + Views: 5994 + Downloads: 59 - GameBananaType: Gamefile GameBananaId: 10788 Name: Lua Cutscenes - Authors: [Cruor, '0x0ade', JaThePlayer] + Authors: [Cruor, '0x0ade', JaThePlayer, rhelmot] Description: '' Text: Lua Cutscenes for Celeste. Allows creating simple (or advanced) cutscenes with Lua. Example cutscene, structure and documentation is included in the zip. @@ -6858,9 +7107,9 @@ to the mod itself if you need extra functionality. Doing so will require you to fork and share this mod for absolutely no reason, otherwise nobody will have your changes. Implement any extra helpers you need in your OWN cutscene or helper library. - Likes: 8 - Views: 17888 - Downloads: 637 + Likes: 9 + Views: 18370 + Downloads: 668 - GameBananaType: Tool GameBananaId: 6761 Name: XDG Modding Kit @@ -6872,8 +7121,8 @@ install the software for the launchers to work NOTE: These files are only tested on my computer' Likes: 0 - Views: 2611 - Downloads: 31 + Views: 2628 + Downloads: 32 - GameBananaType: Gamefile GameBananaId: 10776 Name: Mouse Controls @@ -6884,8 +7133,8 @@ not just do the whole game. Left Click to Jump, Right Click to Grab/Talk, Middle Click/Scroll to Dash. Most settings only accessible from the main menu. Likes: 2 - Views: 6391 - Downloads: 98 + Views: 6737 + Downloads: 113 - GameBananaType: Map GameBananaId: 207746 Name: 7d(single dash ver) @@ -6901,8 +7150,8 @@ of the map) A firm understanding of various entities and physics A big brain Good luck. Have fun... (See Notes.txt for extra info)' Likes: 1 - Views: 4827 - Downloads: 100 + Views: 4861 + Downloads: 101 - GameBananaType: Map GameBananaId: 207705 Name: Alternative Levels @@ -6912,7 +7161,7 @@ with a lot more Theo. Second, a Core level with a twist. A total of 23 strawberries to collect. Some hidden, and others just out of reach. Likes: 0 - Views: 3106 + Views: 3123 Downloads: 157 - GameBananaType: Map GameBananaId: 207664 @@ -6924,7 +7173,7 @@ This map is in Graveyard state. I'm no longer working on it sadly. I'm going to do a REMAKE of this map, since i learnt a lot of ahorn in the last 3-4 months Likes: 2 - Views: 7983 + Views: 8008 Downloads: 144 - GameBananaType: Gamefile GameBananaId: 10704 @@ -6950,8 +7199,8 @@ \ is the maximum time (in seconds) needed to get this rank. You can put multiple\ \ s in one file if your mod has more than one map." Likes: 5 - Views: 6732 - Downloads: 41 + Views: 6753 + Downloads: 43 - GameBananaType: Map GameBananaId: 207623 Name: The Void...? @@ -6963,8 +7212,8 @@ ---Contains--- 4 Rooms. (One is huge) 6 Berries. A Crystal Heart...? Hours of Suffering. and a little secret ;) Hope you (dont.) enjoy! Likes: 3 - Views: 11137 - Downloads: 138 + Views: 11151 + Downloads: 140 - GameBananaType: Map GameBananaId: 207588 Name: New Wonders @@ -6978,7 +7227,7 @@ heart. Both the A and B-side have a golden strawberry for you to collect! There is also a Moon Berry.' Likes: 2 - Views: 7457 + Views: 7485 Downloads: 99 - GameBananaType: Gamefile GameBananaId: 10658 @@ -6989,8 +7238,8 @@ the vanilla lamps, but can shine in any color! - Player flashlight color triggers - you can even make the flashlight transparent so it doesn''t shine at all!' Likes: 2 - Views: 2719 - Downloads: 88 + Views: 2744 + Downloads: 94 - GameBananaType: Map GameBananaId: 207527 Name: ToTheMars @@ -7005,15 +7254,15 @@ respawn so you can throw it anywhere freely. All bgm stole from Explorers of Sky. Need DJMapHelper 1.8.2' Likes: 3 - Views: 6548 + Views: 6571 Downloads: 108 - GameBananaType: Map GameBananaId: 207516 - Name: (Game/Trick Helper) Badeline's Training + Name: Badeline's Tricks Training Authors: [Juanpa98ar] - Description: Everything you need to master the mountain! And ZA WARUDO! - Text: 'ALOHA Gamebanana community. Finally, my first map. Available in Spanish and - English Available in YouTube: https://www.youtube.com/playlist?list=PLqwjZPOmk1A9ExKXJYBZ9R2htuiL6Mbar + Description: Everything you need to master ZA WARUDO! + Text: 'ALOHA Gamebanana community. Available in Spanish and English Available in + YouTube: https://www.youtube.com/playlist?list=PLqwjZPOmk1A9ExKXJYBZ9R2htuiL6Mbar Useful (maybe) tricks guide for players and creators. This Map: It is focused on teaching players (and map makers) the different types of tricks that can be performed with jumps, dash and hitbox, among others. Players will use these tricks @@ -7046,13 +7295,10 @@ 7 seconds or less to touch all switches, you are warned. No one said learning was easy. Except library rats. Good luck and I hope this is useful for you If you find any bug or abnormal situation, do not hesitate to report it in full detail, - keep in mind that the map is large. Reality: Naturally, after so long playing - this wonderful game, it has finally bored me, not even mods can give me a second - opinion. I just hope you enjoy this game to the fullest, it has a lot to give. - And the community of this game is really amazing.' - Likes: 8 - Views: 28628 - Downloads: 352 + keep in mind that the map is large.' + Likes: 9 + Views: 28850 + Downloads: 363 - GameBananaType: Map GameBananaId: 207502 Name: The Descent (Abandoned?) @@ -7067,7 +7313,7 @@ A dashless golden midway through the level (no double golden, sorry) 3 obligatory golden berries' Likes: 3 - Views: 7780 + Views: 7924 Downloads: 105 - GameBananaType: Gui GameBananaId: 35153 @@ -7077,8 +7323,8 @@ Text: 'Shows a golden flag stamp on your save file if you have all Full Clears! :wow:' Likes: 2 - Views: 7173 - Downloads: 55 + Views: 7307 + Downloads: 59 - GameBananaType: Map GameBananaId: 207442 Name: Lost Theo @@ -7108,8 +7354,8 @@ I might add it in the future. So I''m listing it now just so I don''t have to update the list later :P)' Likes: 1 - Views: 4341 - Downloads: 71 + Views: 4353 + Downloads: 72 - GameBananaType: Skin GameBananaId: 174193 Name: Vriska @@ -7117,8 +7363,8 @@ Description: A pretty gr8 mod Text: Play as the gr8est character from the we8comic Homestuck! Likes: 3 - Views: 7514 - Downloads: 134 + Views: 7629 + Downloads: 140 - GameBananaType: Map GameBananaId: 207392 Name: Celestial Resort Revisited @@ -7131,7 +7377,7 @@ the end if you''re up for that Sorry, no recording this time, it would be too much for this computer to render As always, feedback is appreciated.' Likes: 2 - Views: 2863 + Views: 2876 Downloads: 37 - GameBananaType: Map GameBananaId: 207345 @@ -7150,8 +7396,8 @@ 100s of neutrals Riveting plot 1 Cassette tape (no B side) 1 Crystal Heart Requires Frost Helper (used for custom spinner colors). https://gamebanana.com/gamefiles/9201' Likes: 12 - Views: 17251 - Downloads: 275 + Views: 17312 + Downloads: 282 - GameBananaType: Tool GameBananaId: 6741 Name: Crow Control [BETA] @@ -7196,8 +7442,8 @@ Discord: (mrstaneh#5961), ping me in the Celeste Discord, or post it right in here!' Likes: 8 - Views: 32754 - Downloads: 138 + Views: 32823 + Downloads: 142 - GameBananaType: Map GameBananaId: 207352 Name: A Christmas Night @@ -7207,8 +7453,8 @@ you gain a lot of height when needed - 11 strawberries - A hidden challenge... - 30 rooms - Support for the Time Trials mod' Likes: 8 - Views: 9579 - Downloads: 202 + Views: 9611 + Downloads: 204 - GameBananaType: Map GameBananaId: 207360 Name: The Last Goodbye (WIP) @@ -7224,7 +7470,7 @@ += Finished //= Inprogress CH1: Permafrost Metropolis (X) CH2: Frigid Ruins (X) CH3: Frozen Fortress (X) CH4: Blizzard Peak (//) CH5: Crystal Palace (X)' Likes: 1 - Views: 3742 + Views: 3762 Downloads: 43 - GameBananaType: Gamefile GameBananaId: 10548 @@ -7241,7 +7487,7 @@ one will ever download this , just delete/blacklist the mod when you''re done with it.' Likes: 0 - Views: 4274 + Views: 4307 Downloads: 27 - GameBananaType: Map GameBananaId: 207309 @@ -7284,8 +7530,8 @@ Enjoy! If you have any feedback or you have found any bugs or errors, let me know in the comments or on Discord.' Likes: 14 - Views: 28158 - Downloads: 338 + Views: 28368 + Downloads: 356 - GameBananaType: Map GameBananaId: 207234 Name: Grand Escape @@ -7295,7 +7541,7 @@ -One Moon Berry -Feathers -Deaths Requirements: -Celeste 1.3.0.0 -DJMapHelper 1.7.10' Likes: 1 - Views: 3378 + Views: 3390 Downloads: 51 - GameBananaType: Map GameBananaId: 207214 @@ -7318,8 +7564,8 @@ faster you will be going after. A short demo is provided https://i.imgur.com/W2fI7mz.mp4 I hope you guys give it a shot and enjoy. Likes: 5 - Views: 14713 - Downloads: 212 + Views: 14772 + Downloads: 215 - GameBananaType: Map GameBananaId: 207184 Name: Spoopy's Laid-Back Level Pack @@ -7339,7 +7585,7 @@ asking. Check out a recording of the full map here: https://www.youtube.com/watch?v=A0QOLt_d4TE (Didn''t want to embed on the front page)' Likes: 6 - Views: 7019 + Views: 7037 Downloads: 87 - GameBananaType: Map GameBananaId: 207101 @@ -7349,8 +7595,8 @@ Text: A map for people to hang out on ghostnet (or on your own!) Hosted by Oshiro (we needed the hotel) Likes: 0 - Views: 2190 - Downloads: 134 + Views: 2195 + Downloads: 135 - GameBananaType: Gamefile GameBananaId: 10381 Name: 'Celeste: Polish game translation' @@ -7375,8 +7621,8 @@ should be done. If people will have issues with installing it, I may create a mod file to make it easier to install.' Likes: 4 - Views: 3695 - Downloads: 80 + Views: 3711 + Downloads: 81 - GameBananaType: Map GameBananaId: 207096 Name: Deeproot (VERY W.I.P.) @@ -7384,7 +7630,7 @@ Description: Still working on it Text: A tree map that takes place underground. Likes: 0 - Views: 1251 + Views: 1253 Downloads: 61 - GameBananaType: Map GameBananaId: 207073 @@ -7400,7 +7646,7 @@ 3 planned for the C-Side. This map was inspired by a room in nameguy523's Reflection D-Side. (Please leave feedback in the comments) Likes: 2 - Views: 1847 + Views: 1854 Downloads: 41 - GameBananaType: Gamefile GameBananaId: 10320 @@ -7415,8 +7661,8 @@ work, it doesnt look like it''s supposed to or has a spelling error of some sort please DM me on discord @baumfaeller#4462' Likes: 1 - Views: 3622 - Downloads: 61 + Views: 3634 + Downloads: 62 - GameBananaType: Gamefile GameBananaId: 10301 Name: Vanilla Tweaks @@ -7436,8 +7682,8 @@ didn''t account for bright backgrounds hiding spikes. If you have suggestions for more tweaks, tell me on discord! I''m JaThePlayer#2580' Likes: 3 - Views: 9132 - Downloads: 82 + Views: 9181 + Downloads: 86 - GameBananaType: Gamefile GameBananaId: 10271 Name: Kayden's Commands @@ -7451,8 +7697,8 @@ stop_rec - stops the recording started by start_rec and saves it to the designated location.' Likes: 3 - Views: 9148 - Downloads: 55 + Views: 9239 + Downloads: 57 - GameBananaType: Map GameBananaId: 206930 Name: Shrouded Thoughts @@ -7471,8 +7717,8 @@ Currently contains only an A-side, with planned B and C sides. Hope you will enjoy this chapter! Likes: 22 - Views: 24489 - Downloads: 370 + Views: 24595 + Downloads: 389 - GameBananaType: Gamefile GameBananaId: 10260 Name: Factory Helper @@ -7542,8 +7788,8 @@ for other maps if map makers want to. A few custom backgrounds for the factory setting as well as the factory tileset and decals.' Likes: 10 - Views: 18563 - Downloads: 635 + Views: 18888 + Downloads: 660 - GameBananaType: Gamefile GameBananaId: 10237 Name: Oshiro ghostnet emote pack @@ -7551,7 +7797,7 @@ Description: wtf is oshiro/lostcontrol like i mean he has control of himself... Text: God this gets boring fast OPEN THE ZIP Likes: 0 - Views: 1834 + Views: 1837 Downloads: 41 - GameBananaType: Gamefile GameBananaId: 10236 @@ -7561,7 +7807,7 @@ Text: called it a minipack cuz there's only five please please please open the zip and check the readme Likes: 0 - Views: 1647 + Views: 1661 Downloads: 47 - GameBananaType: Gamefile GameBananaId: 10232 @@ -7571,8 +7817,8 @@ Text: a set of emotes for ghostnet. you'll need ghostnet (also most emotes are animated!) OPEN THE ZIP Likes: 1 - Views: 4408 - Downloads: 263 + Views: 4456 + Downloads: 265 - GameBananaType: Gamefile GameBananaId: 10222 Name: Theo Ghostnet Emote Pack @@ -7581,7 +7827,7 @@ Text: a set of emotes for ghostnet. you'll need ghostnet (also most emotes are animated!) OPEN THE ZIP Likes: 0 - Views: 1875 + Views: 1892 Downloads: 61 - GameBananaType: Gamefile GameBananaId: 10186 @@ -7591,7 +7837,7 @@ Text: a set of emotes for ghostnet. you'll need ghostnet (also most emotes are animated!) OPEN THE ZIP Likes: 1 - Views: 5727 + Views: 5764 Downloads: 240 - GameBananaType: Map GameBananaId: 206884 @@ -7602,8 +7848,8 @@ Text: Archaic Terrace is a map that utilizes zip movers and swap blocks. There are over 20 rooms and 10 strawberries, although there is no B or C Side. Likes: 5 - Views: 6201 - Downloads: 87 + Views: 6255 + Downloads: 89 - GameBananaType: Map GameBananaId: 206874 Name: Enchanted Canyon @@ -7615,8 +7861,8 @@ Helper mod, link provided in dependencies below 3. Drag and drop into your Mods folder' Likes: 15 - Views: 18267 - Downloads: 366 + Views: 18417 + Downloads: 386 - GameBananaType: Gamefile GameBananaId: 10166 Name: Canyon Helper @@ -7632,8 +7878,8 @@ and Helper are together, html doesn''t let me join them because syntax) Version: 1.0.0' Likes: 6 - Views: 13267 - Downloads: 631 + Views: 13626 + Downloads: 653 - GameBananaType: Gamefile GameBananaId: 10163 Name: Celeste, Google Translated Edition @@ -7645,8 +7891,8 @@ or any of those hundreds of google translate meme videos. To platy, select the actual language from the language options menu. box Likes: 5 - Views: 8914 - Downloads: 106 + Views: 8943 + Downloads: 108 - GameBananaType: Wip GameBananaId: 50911 Name: A Journey Unknown @@ -7656,8 +7902,8 @@ v. 1.1+ Isa''s Grab Bag of Mechanics! v. 1.3.3+ Pandora''s Box v. 1.0.7+ Background Toggler v. 1+ (yes it''s a lot)' Likes: 2 - Views: 2707 - Downloads: 26 + Views: 2714 + Downloads: 27 - GameBananaType: Map GameBananaId: 206829 Name: Seal's Random Maps @@ -7666,8 +7912,8 @@ Text: 'These are my random maps! They can range from: Good Eh Bad Hot Garbage ------------------------------------------ Maps Included are: Seal''s Summit (Stable Ver.) Spike City (Final Ver.) ------------------------------------------' Likes: 3 - Views: 3852 - Downloads: 59 + Views: 3867 + Downloads: 60 - GameBananaType: Map GameBananaId: 206828 Name: Beta @@ -7677,7 +7923,7 @@ has 2 Chapters, The Land Of Wind And Shade and the Land of Light and Rain but more will be added in time. Likes: 2 - Views: 5962 + Views: 6003 Downloads: 71 - GameBananaType: Gamefile GameBananaId: 10136 @@ -7687,8 +7933,8 @@ Text: Allows you to add as many types of clutter as you wish. Clutter switches can also be added for the clutter. Likes: 4 - Views: 8084 - Downloads: 392 + Views: 8335 + Downloads: 415 - GameBananaType: Map GameBananaId: 206817 Name: SAYONARA @@ -7698,7 +7944,7 @@ I'm going to improve upon story in later mods I hope. Not only that, but since this is my first mod, I would love some constructive criticism. Thank you! Likes: 2 - Views: 2258 + Views: 2260 Downloads: 131 - GameBananaType: Gamefile GameBananaId: 10119 @@ -7710,7 +7956,7 @@ though ). Jake from the Discord server made a fake screenshot of it, and I found it funny to actually make this real. Likes: 3 - Views: 5053 + Views: 5082 Downloads: 38 - GameBananaType: Map GameBananaId: 206790 @@ -7763,8 +8009,8 @@ too much however) or email at lushboystudios@gmail.com or check out this super amateur 2d platformer i made two years ago called luna cheers xoxo' Likes: 14 - Views: 27799 - Downloads: 414 + Views: 28063 + Downloads: 423 - GameBananaType: Gamefile GameBananaId: 10105 Name: Speed Commands @@ -7778,7 +8024,7 @@ is X speed, the second number is Y speed. That''s... pretty much it! If you have any issues, please leave a comment or ping me on Discord (SuperSupermario24#0079).' Likes: 2 - Views: 4851 + Views: 4905 Downloads: 46 - GameBananaType: Tool GameBananaId: 6715 @@ -7787,8 +8033,8 @@ Description: Simple TAS tools for Celeste. Text: Usage instructions here. Current TAS files here. Likes: 13 - Views: 47969 - Downloads: 1145 + Views: 48380 + Downloads: 1187 - GameBananaType: Gamefile GameBananaId: 10097 Name: More Dasheline @@ -7800,8 +8046,8 @@ to any amount you want. Also adds Max Dash Triggers that can set your maximum dashes to any amount you want. Likes: 7 - Views: 14960 - Downloads: 564 + Views: 15295 + Downloads: 592 - GameBananaType: Map GameBananaId: 206759 Name: Farewell C-Side @@ -7818,8 +8064,8 @@ immediately, so keep that in mind. Any feedback is appreciated, as this is my first modding endeavor and I want to improve! Likes: 5 - Views: 10192 - Downloads: 482 + Views: 10251 + Downloads: 488 - GameBananaType: Map GameBananaId: 206758 Name: Black Hole Realm @@ -7829,7 +8075,7 @@ custom mechanics done entirely using Simple Cutscenes Like I said, it's short, containing only 16 rooms. Of course, requires Simple Cutscenes 1.3 or higher Likes: 4 - Views: 4449 + Views: 4456 Downloads: 162 - GameBananaType: Map GameBananaId: 206747 @@ -7841,7 +8087,7 @@ NOT THE SAME AS POLYGON DREAMS, and with extra content as well. Enjoy and Have fun :) The campaign is done! Likes: 3 - Views: 6026 + Views: 6301 Downloads: 129 - GameBananaType: Map GameBananaId: 206740 @@ -7864,8 +8110,8 @@ what the Variant mod allows. - When you're ready to ascend, press F6. This will bring up a map of the whole mod. Right click the upper left room to enter paradise. Likes: 1 - Views: 2093 - Downloads: 158 + Views: 2098 + Downloads: 160 - GameBananaType: Map GameBananaId: 206738 Name: Forsaken City E-Side @@ -7874,8 +8120,8 @@ Text: Is the forsaken city d-Side too easy for you? Well now you can try the forsaken city E-Side! f-side when? Likes: 3 - Views: 4609 - Downloads: 67 + Views: 4657 + Downloads: 68 - GameBananaType: Map GameBananaId: 206701 Name: Lost Levels @@ -7885,8 +8131,8 @@ What's even better is that it was done without updating ahorn (i hate immense difficulties with that) Enjoy! Likes: 3 - Views: 7718 - Downloads: 721 + Views: 7808 + Downloads: 726 - GameBananaType: Map GameBananaId: 206698 Name: Aftermath @@ -7909,8 +8155,8 @@ release both as a part of this campaign and as its own map (meaning a "dual release"), so more people can play it when it's out. For now, enjoy chapters 1 and 2. Likes: 8 - Views: 12278 - Downloads: 272 + Views: 12339 + Downloads: 275 - GameBananaType: Map GameBananaId: 206690 Name: veryepicmap @@ -7918,8 +8164,8 @@ Description: its very epic Text: another map, you can speedrun it Likes: 2 - Views: 2622 - Downloads: 69 + Views: 2631 + Downloads: 70 - GameBananaType: Map GameBananaId: 206675 Name: Celeste Arcade @@ -7929,8 +8175,8 @@ Text: A fun collection of levels themed around old arcade games. Features 8 arcade cabinets, 12 strawberries, and 1 hidden crystal heart Likes: 5 - Views: 11503 - Downloads: 289 + Views: 11563 + Downloads: 293 - GameBananaType: Gamefile GameBananaId: 10004 Name: Simple Cutscenes @@ -7942,7 +8188,7 @@ to do so. Now includes basic documentation! You can also look at the examples included in the mod to figure out what to do. Currently very limited functionality.' Likes: 9 - Views: 13743 + Views: 13794 Downloads: 484 - GameBananaType: Gamefile GameBananaId: 9971 @@ -7952,8 +8198,8 @@ Text: this mod is a garbage poopy mod that destroys celeste with horrid putrid memes. madeline visits epic celeste mountain to find the one and only SUPER MEME. Likes: 2 - Views: 8824 - Downloads: 299 + Views: 8943 + Downloads: 301 - GameBananaType: Map GameBananaId: 206636 Name: 'Lake of Purity 2: Electric Boogaloo' @@ -7967,7 +8213,7 @@ Custom Music RAINBOW BERRY Harder gameplay. Made for really experienced players. As always, Hype on! Likes: 4 - Views: 3858 + Views: 3869 Downloads: 84 - GameBananaType: Map GameBananaId: 206635 @@ -7976,7 +8222,7 @@ Description: My First Map 8) Text: Well, my first map of celeste. Have fun! =P Likes: 0 - Views: 2666 + Views: 2674 Downloads: 146 - GameBananaType: Map GameBananaId: 206633 @@ -7989,8 +8235,8 @@ farewell update so I had to edit them to make them possible without dashes. If anything else is broken, msg me on discord: deskilln#1403' Likes: 5 - Views: 15292 - Downloads: 226 + Views: 15386 + Downloads: 230 - GameBananaType: Map GameBananaId: 206611 Name: The Crystal City @@ -8002,7 +8248,7 @@ too! All in all, not too bad of a time. Knowing how to do wallboosts is required, but other than that it''s not too hard.' Likes: 2 - Views: 3228 + Views: 3242 Downloads: 62 - GameBananaType: Map GameBananaId: 206602 @@ -8015,8 +8261,8 @@ Beyond The Waterfall is a map featuring: - More custom mechanics - 44(?) rooms - 7 strawberries - More cutscenes' Likes: 6 - Views: 17526 - Downloads: 524 + Views: 17629 + Downloads: 540 - GameBananaType: Map GameBananaId: 206572 Name: Insanelynicemap @@ -8025,7 +8271,7 @@ Text: Insanelynicemap its insanely nice Thanks to ade for contributing to this amazing map. Likes: 3 - Views: 2724 + Views: 2735 Downloads: 57 - GameBananaType: Gamefile GameBananaId: 9856 @@ -8036,8 +8282,8 @@ think anyone will use more than that. ...right? (NOTE: if you change any of the mod''s settings, you need to restart the game for the changes to take effect)' Likes: 17 - Views: 20355 - Downloads: 354 + Views: 20518 + Downloads: 376 - GameBananaType: Map GameBananaId: 206380 Name: Synchronized Jumping @@ -8048,7 +8294,7 @@ to play this level. Find the dependencies below! You'll be able to find 4 strawberries in this level. No cassette. Have fun! Likes: 2 - Views: 4081 + Views: 4098 Downloads: 65 - GameBananaType: Map GameBananaId: 206364 @@ -8068,8 +8314,8 @@ make sure you have that downloaded and installed before you play the map otherwise Celeste will probably explode or something. Also yes I am aware Oshiro is pointy. Likes: 4 - Views: 4210 - Downloads: 74 + Views: 4231 + Downloads: 76 - GameBananaType: Map GameBananaId: 206359 Name: Point of No Return @@ -8080,8 +8326,8 @@ it obviously. Not much else to say here. No Cassette or B-side, though there are 3 berries in there at least! Have fun! Likes: 4 - Views: 7599 - Downloads: 93 + Views: 7800 + Downloads: 98 - GameBananaType: Map GameBananaId: 206358 Name: Hard ForsakenCity @@ -8090,7 +8336,7 @@ Text: is just a hard version of ForsakenCity (A side) this map requires DJ Map Helper there are not everest.yaml sorry Likes: 3 - Views: 2463 + Views: 2465 Downloads: 196 - GameBananaType: Skin GameBananaId: 171934 @@ -8105,8 +8351,8 @@ 1.15, they won''t be read until they''re moved. Example: FF0018 FF852C FFFF41 088018 0808F9 86087D' Likes: 13 - Views: 24615 - Downloads: 424 + Views: 25359 + Downloads: 450 - GameBananaType: Gamefile GameBananaId: 9807 Name: Adventure Helper @@ -8130,8 +8376,8 @@ a custom grey heart sprite by Nikko (code by Coloursofnoise). - Outro car: outro car.' Likes: 9 - Views: 24348 - Downloads: 861 + Views: 24905 + Downloads: 908 - GameBananaType: Gamefile GameBananaId: 9806 Name: Wobble Decals @@ -8141,8 +8387,8 @@ (just like grass, for example). To use, the path to your decal needs to contain a "wobbleDecals" (case sensitive) subfolder. That's it! Likes: 3 - Views: 3253 - Downloads: 49 + Views: 3272 + Downloads: 50 - GameBananaType: Map GameBananaId: 206298 Name: Vsummit @@ -8150,7 +8396,7 @@ Description: '' Text: It's my first map, there are 7levels Likes: 0 - Views: 1636 + Views: 1639 Downloads: 104 - GameBananaType: Map GameBananaId: 206110 @@ -8169,7 +8415,7 @@ solution cheeses (that do not involve any advanced movement techniques), bugs, softlocks etc. Likes: 6 - Views: 3691 + Views: 3736 Downloads: 74 - GameBananaType: Gui GameBananaId: 34819 @@ -8192,8 +8438,8 @@ on Discord (SSM24#0079). Also, if you want to learn more about stamina in this game, I''ve made a Reddit post that goes into detail about exactly that.' Likes: 7 - Views: 20904 - Downloads: 644 + Views: 21122 + Downloads: 701 - GameBananaType: Map GameBananaId: 206009 Name: Forsaken Metropolis @@ -8207,8 +8453,8 @@ box for only the biggest of idiots. Good luck finding them! I had fun making this, so I hope you have fun playing it. Likes: 1 - Views: 7435 - Downloads: 204 + Views: 7454 + Downloads: 205 - GameBananaType: Gui GameBananaId: 34802 Name: Celeste Romanian Translation @@ -8216,7 +8462,7 @@ Description: '' Text: This is a full translation of Celeste. WIP Likes: 0 - Views: 1787 + Views: 1796 Downloads: 21 - GameBananaType: Gamefile GameBananaId: 9534 @@ -8230,8 +8476,8 @@ the "Fewest Deaths" count. (Fun fact: the icon used for dashes in the chapter panel is present in vanilla Celeste, but unused.)' Likes: 7 - Views: 6535 - Downloads: 101 + Views: 6588 + Downloads: 102 - GameBananaType: Gamefile GameBananaId: 9518 Name: Pandora's Box @@ -8249,8 +8495,8 @@ added whenever I feel like it. Please report any issues that are found. Entities marked Unholy might have some weird side effects and quirks. Likes: 16 - Views: 27479 - Downloads: 741 + Views: 27973 + Downloads: 773 - GameBananaType: Gamefile GameBananaId: 9486 Name: Extended Variant Mode @@ -8367,8 +8613,8 @@ Refills gives more jumps to the player, even if that exceeds the Jump Count variant setting.' Likes: 25 - Views: 74320 - Downloads: 1740 + Views: 75043 + Downloads: 1814 - GameBananaType: Map GameBananaId: 205874 Name: edis-C timmuS (7C reversed) @@ -8384,7 +8630,7 @@ assist mode will do the trick nicely. Bonus points if you can spot both (2) of the adjustments made to the forward path. Good luck and have fun!' Likes: 1 - Views: 3035 + Views: 3060 Downloads: 45 - GameBananaType: Gamefile GameBananaId: 9412 @@ -8393,8 +8639,8 @@ Description: Where did i die again? Text: A small little everest mod that shows markers at places where you've died. Likes: 7 - Views: 7114 - Downloads: 122 + Views: 7147 + Downloads: 126 - GameBananaType: Map GameBananaId: 205757 Name: 'The Nightmare: A One Screen Challenge' @@ -8405,7 +8651,7 @@ must collect the key to escape. All mechanics are thrown at you (expect for clouds because who likes clouds). Likes: 5 - Views: 2434 + Views: 2442 Downloads: 49 - GameBananaType: Gamefile GameBananaId: 9349 @@ -8415,8 +8661,8 @@ Text: A small accessibility mod that makes Madeline create a ripple effect upon pressing the journal key. (TAB by default) Likes: 1 - Views: 3604 - Downloads: 37 + Views: 3622 + Downloads: 38 - GameBananaType: Tool GameBananaId: 6664 Name: Out Of Memory Exception Fix Tool[Deprecated] @@ -8435,7 +8681,7 @@ after reinstalling or upgrading Everest References:https://blogs.msdn.microsoft.com/calvin_hsia/2010/09/27/out-of-memory-easy-ways-to-increase-the-memory-available-to-your-program/ https://blog.walterlv.com/windows/2017/09/12/32bit-application-use-large-memory.html' Likes: 1 - Views: 3835 + Views: 3870 Downloads: 56 - GameBananaType: Map GameBananaId: 205581 @@ -8453,8 +8699,8 @@ DJMapHelper allows you to pick and choose which set of rooms you want to do first. Each of the 17 maps are 3 rooms long and range in difficulty from Easy to Extreme. Likes: 10 - Views: 26899 - Downloads: 379 + Views: 27009 + Downloads: 382 - GameBananaType: Gamefile GameBananaId: 9201 Name: Frost Helper @@ -8466,8 +8712,8 @@ - Name: FrostHelper Version: 1.18.0 Remember to tell the players that they need to download this if you use it in your map.' Likes: 11 - Views: 43223 - Downloads: 1607 + Views: 43811 + Downloads: 1676 - GameBananaType: Map GameBananaId: 205437 Name: Dream World @@ -8475,8 +8721,8 @@ Description: '' Text: I finally got my first ever map done! Enjoy my take on level 2, 6, and 8. Likes: 5 - Views: 5016 - Downloads: 376 + Views: 5030 + Downloads: 378 - GameBananaType: Map GameBananaId: 205230 Name: 'Crystalized: Full Release' @@ -8493,8 +8739,8 @@ heart One gold strawberry Chapter 3 contains: 16 strawberries One crystal heart One gold strawberry' Likes: 9 - Views: 22832 - Downloads: 359 + Views: 23615 + Downloads: 372 - GameBananaType: Map GameBananaId: 205222 Name: Suika's Summit @@ -8503,7 +8749,7 @@ Text: This mod's summit gems are the same as Chapter 7, so please use a new file to play this mod. Thank you for playing. Likes: 5 - Views: 3363 + Views: 3374 Downloads: 63 - GameBananaType: Map GameBananaId: 205074 @@ -8521,8 +8767,8 @@ B side level, attempting to make a little bit of a difficulty curve. Chapters start out fairly simple and progressively get more difficult. Likes: 9 - Views: 19496 - Downloads: 292 + Views: 19565 + Downloads: 295 - GameBananaType: Map GameBananaId: 204792 Name: Blue Ocean Floor @@ -8532,8 +8778,8 @@ another story, where she is in another world, with different realities. She will overcome the harsh truth about herself, but are you ready for the journey?? Likes: 6 - Views: 13533 - Downloads: 268 + Views: 13572 + Downloads: 270 - GameBananaType: Map GameBananaId: 204781 Name: 'One Screen Challenge: Core' @@ -8546,8 +8792,8 @@ jumps are on point. 5/17/19- Thanks to Hyper for pointing out a silly flaw that allows users to keep their dash. Should be fixed now. Likes: 4 - Views: 4615 - Downloads: 97 + Views: 4640 + Downloads: 99 - GameBananaType: Map GameBananaId: 204654 Name: Hanging Gardens v1.1 @@ -8560,8 +8806,8 @@ try to get if you really want, otherwise it's just a straight forward level with one objective being to beat it and get the crystal heart. Hope you enjoy it! Likes: 2 - Views: 3347 - Downloads: 191 + Views: 3363 + Downloads: 193 - GameBananaType: Map GameBananaId: 204636 Name: Water Temple @@ -8573,8 +8819,8 @@ of element from the mirror temple (and water of course). There is currently only a a-side (and a very early b-side). If it doesn't work, please let me know. Likes: 8 - Views: 15528 - Downloads: 257 + Views: 15589 + Downloads: 260 - GameBananaType: Tool GameBananaId: 6630 Name: EverInst @@ -8583,8 +8829,8 @@ Text: Linux port of the Everest Installer. The AppImage should work on all distros that support AppImages, and the .deb should work on Ubuntu 16.04+ and Debian 10+. Likes: 4 - Views: 27917 - Downloads: 978 + Views: 28063 + Downloads: 991 - GameBananaType: Tool GameBananaId: 6626 Name: Automated Video Editor @@ -8627,8 +8873,8 @@ is the kind seen in, for example, Sunset Boulevard, this can prevent the issue. A known case of this is a certain part of Old Abyss. Likes: 1 - Views: 4621 - Downloads: 30 + Views: 4630 + Downloads: 31 - GameBananaType: Map GameBananaId: 204463 Name: Shadow's Sanctuary @@ -8637,7 +8883,7 @@ Text: You've awoken in another dream. This time, however, there is a new place to discover, and Part of You doesn't like the feeling of it... Likes: 6 - Views: 9275 + Views: 9441 Downloads: 145 - GameBananaType: Map GameBananaId: 204418 @@ -8651,8 +8897,8 @@ https://gamebanana.com/gamefiles/8283 This mod also makes use of Exudias'' Dialog Textbox mod. It comes pre installed, but it can be found here: https://gamebanana.com/gamefiles/7891' Likes: 5 - Views: 6710 - Downloads: 119 + Views: 6744 + Downloads: 122 - GameBananaType: Map GameBananaId: 204122 Name: Magic Valley @@ -8665,8 +8911,8 @@ doesn''t require any speed tech The B-Side requires extended hypers, bunnyhops, dash cancels and wallbounces' Likes: 5 - Views: 9801 - Downloads: 221 + Views: 9814 + Downloads: 223 - GameBananaType: Gui GameBananaId: 34578 Name: Bingo UI @@ -8676,8 +8922,8 @@ reset whenever you restart the game or whenever you enter Prologue (e.g. at the start of a new file). Everything else is based on save data. Likes: 3 - Views: 24322 - Downloads: 281 + Views: 24803 + Downloads: 301 - GameBananaType: Map GameBananaId: 204067 Name: Madelines bizarre adventure Golden wind @@ -8687,7 +8933,7 @@ no-dash golden berry.) Require: 1. Everest: at least 825 2. DJMapHelper: at least 1.6.3 3. BGswitch: at least 0.1.0' Likes: 3 - Views: 3960 + Views: 3975 Downloads: 63 - GameBananaType: Map GameBananaId: 203966 @@ -8705,8 +8951,8 @@ -Hell: 7C My first principle is to change as less as possible to make Madeline go back. So if you get stuck, just ask me. Here is DJ Map Helper' Likes: 11 - Views: 44086 - Downloads: 489 + Views: 45061 + Downloads: 514 - GameBananaType: Gamefile GameBananaId: 8542 Name: Celeste thai mod @@ -8714,7 +8960,7 @@ Description: '' Text: Thai mod for celeste Translating 30% Likes: 0 - Views: 1933 + Views: 1950 Downloads: 16 - GameBananaType: Map GameBananaId: 203903 @@ -8725,8 +8971,8 @@ also is deadly, so don't die. Includes Custom Music Custom Decals Intro Car ^ Other Cool Things 3 Normal Berries Maybe a golden berry Yeah thats it lol. Likes: 5 - Views: 5441 - Downloads: 101 + Views: 5450 + Downloads: 102 - GameBananaType: Map GameBananaId: 203768 Name: Gauntlet Revamped @@ -8757,8 +9003,8 @@ taking a really long time there and Paula''s theme seemed to make people go insane after 30 minutes or more, really should have seen that coming huh?' Likes: 2 - Views: 2963 - Downloads: 52 + Views: 3054 + Downloads: 53 - GameBananaType: Map GameBananaId: 203728 Name: No Gondola @@ -8769,7 +9015,7 @@ B-side tape (level coming soon), and crystal heart ending. Hope you guys enjoy :) Likes: 2 - Views: 4457 + Views: 4465 Downloads: 255 - GameBananaType: Gamefile GameBananaId: 8458 @@ -8805,8 +9051,8 @@ feather barrier. meiyou - Source of the idea for climb blocker trigger. HigashiD - Source of the idea for temple gate reversed and creator of Colorful Refill.' Likes: 13 - Views: 47092 - Downloads: 1480 + Views: 47575 + Downloads: 1518 - GameBananaType: Map GameBananaId: 203697 Name: One Screen Challenges @@ -8815,8 +9061,8 @@ Text: 'A short mod I''m working on! So far it has one map: Cosmic Pillar, but I plan to add more!' Likes: 4 - Views: 4191 - Downloads: 78 + Views: 4203 + Downloads: 80 - GameBananaType: Map GameBananaId: 203592 Name: Pico-8 Remake @@ -8827,8 +9073,8 @@ There is also a B-side, but it requires advanced movement and it is very difficult. If you find any problems, please tell me. Likes: 7 - Views: 16418 - Downloads: 345 + Views: 16524 + Downloads: 361 - GameBananaType: Tool GameBananaId: 6597 Name: Speedrun Tool @@ -8852,8 +9098,8 @@ nameguy– Mod tester. rjdimo – Shameless self-promoting translator of this readme file. Likes: 13 - Views: 122091 - Downloads: 1853 + Views: 123363 + Downloads: 1960 - GameBananaType: Map GameBananaId: 203473 Name: Forsaken city remix @@ -8863,8 +9109,8 @@ City. It includes: - A B and C side - Bonus rooms - C-side Extension - New heart and cassette tape locations - 20 strawberries' Likes: 2 - Views: 5040 - Downloads: 105 + Views: 5085 + Downloads: 106 - GameBananaType: Map GameBananaId: 203446 Name: Jutatsuki @@ -8874,29 +9120,36 @@ just like how a living being can be damned to death. Both can be done given the right amount of time. Likes: 3 - Views: 11576 + Views: 11658 Downloads: 180 - GameBananaType: Map GameBananaId: 203397 Name: The Secret of Celeste Mountain - Authors: [Xaphan67, The devs of Celeste, '0x0ade', Cruor, Vexatos, JaThePlayer] - Description: '' - Text: 'Explore ancient ruins to find out the secret of Celeste Mountain! But, will - you be able to do it ? This is the first chapter of, hopefully, more to come. - This first chapter commes with A and B Sides. To complete the A-Side, all you - need to know is jump, dash and grab. To complete the B-Side, you must know how - to wallbounce (teatched in 7-B in vanilla). No speed techs or any other moves - are required. This map use custom graphics and music. This first chapter A side - consist of : - 35 Rooms, including secrets - 20 Strawberries - 1 Golden strawberry - (Use debug mode to try it) - 1 Crystal heart - 1 Cassette tape The B-Side consist - of 16 additionnal rooms. (Warning! It''s not easy!) Dialogs are in english and - french. Additionnal credits can be found in the credits.txt file included. Please - note : - This is my first map. Any critics to improve it is welcome! - English - not being my main language, I did my best to translate it. If you find errors, - feel free to help me correct them. Thanks!' - Likes: 10 - Views: 25214 - Downloads: 558 + Authors: [Xaphan67, The devs of Celeste, '0x0ade', Cruor, Vexatos, iamdadbod, lennygold] + Description: When Celeste and Metroid meet each other + Text: 'Madeline feels the need to return to the mountain once again, but she doesn''t + know why. With Theo, she discovers that a secret may be hiding under the mountain. + Will you help her discover it? The Secret of Celeste Mountain is a custom campaign + that focuses on Metroidvania elements and is strongly inspired by the Metroid + series (Mainly Super Metroid). Find your way through new areas, discover tons + of secrets and help Madeline progress under the mountain. Stand-out features : + Unlock old and new abilities and use them to discover all the secrets! Use a new + in-game map to help you avoid getting lost. Travel quickly around the world with + the new warp stations! Requiered tech : A-Sides : None. All you need to know is + jump, dash and grab. Chapter 1 B-Side: You must know how to wallbounce (teatched + in 7-B in vanilla). No speed techs or any other moves are required. Difficulty + : A-Sides range from early B-Side difficulty up to late C-Side difficulty. Chapter + 1 B-Side is around D-Side difficulty. Current content : The campaign currently + contains a prologue and the first two chapters. Chapter 1 also contain a B-Side. + If you''r going after all the collectibles, expect a few hours of gameplay. All + chapters combined, the campaign contains : 110+ Gameplay rooms, including secrets + 47 Strawberries 2 Golden strawberries 2 Crystal hearts 2 Cassettes Dialogues are + available in English and French. Please note : English not being my main language, + I did my best to translate it. If you find errors, feel free to help me correct + them. I hope you will enjoy this campaign as much as I enjoyed making it!' + Likes: 23 + Views: 32487 + Downloads: 739 - GameBananaType: Map GameBananaId: 203391 Name: Moonless Dream WIP @@ -8907,8 +9160,8 @@ of interesting backstory and characterization. Currently contains 1 'checkpoint' of the level. Approximately 20% complete at the best. Likes: 1 - Views: 1693 - Downloads: 47 + Views: 1698 + Downloads: 48 - GameBananaType: Gamefile GameBananaId: 8283 Name: Isa's Grab Bag of Mechanics! @@ -8926,8 +9179,8 @@ Triggers. - Toggle Colored Walls Note: To make this mod required in your map, add "- Name: IsaGrabBag Version: 1.3.5"' Likes: 8 - Views: 24479 - Downloads: 860 + Views: 25233 + Downloads: 895 - GameBananaType: Gamefile GameBananaId: 8262 Name: Celestemojis @@ -8938,7 +9191,7 @@ and other textboxes. Usage is the same as Discord, simply type :emoji name: in any textbox.' Likes: 1 - Views: 9057 + Views: 9095 Downloads: 231 - GameBananaType: Effect GameBananaId: 6132 @@ -8948,8 +9201,8 @@ Text: THIS IS SOLID MOD REWRITTEN Sets the color of Madeline's hair. Works with GhostNet! Likes: 5 - Views: 34005 - Downloads: 481 + Views: 34377 + Downloads: 520 - GameBananaType: Gamefile GameBananaId: 8248 Name: EasyRetry @@ -8961,8 +9214,8 @@ of the keyboard or gamepad keys in Everest's Mod Options. The source is at https:/github.com/CrackedP0t/EasyReset Feel free to give feedback! Likes: 2 - Views: 4464 - Downloads: 78 + Views: 4494 + Downloads: 84 - GameBananaType: Gamefile GameBananaId: 8219 Name: Background Toggler @@ -8972,8 +9225,8 @@ now you too can gimmick up your maps with my latest mechanic, the Background Switch! (also comes in trigger box form, but who cares about trigger boxes) Likes: 0 - Views: 6166 - Downloads: 107 + Views: 6225 + Downloads: 110 - GameBananaType: Map GameBananaId: 203181 Name: Cavern of the Ancients @@ -8985,8 +9238,8 @@ Cavern Helper mod, link provided in dependencies below 3. Drag and drop into your Mods folder' Likes: 9 - Views: 16800 - Downloads: 509 + Views: 17071 + Downloads: 522 - GameBananaType: Gamefile GameBananaId: 8210 Name: Cavern Helper @@ -9001,8 +9254,8 @@ (Everest version your mod runs on, at least 779) - Name: CavernHelper Version: 1.0.0' Likes: 4 - Views: 17782 - Downloads: 720 + Views: 18018 + Downloads: 745 - GameBananaType: Wip GameBananaId: 49620 Name: The Buff-Sides Pack @@ -9014,8 +9267,8 @@ it, that's the whole idea. And, since I'm bad at level design, these levels are inherently worse than the normal B-Sides. Likes: 1 - Views: 2782 - Downloads: 32 + Views: 2792 + Downloads: 33 - GameBananaType: Wip GameBananaId: 49594 Name: Mystic Waters Maps @@ -9023,8 +9276,8 @@ Description: '' Text: A cool map using water Likes: 0 - Views: 2555 - Downloads: 16 + Views: 2561 + Downloads: 17 - GameBananaType: Gamefile GameBananaId: 8162 Name: Simpleste @@ -9041,8 +9294,8 @@ take up to 10 minutes(!) to simply load Celeste! (this mod also includes a Python script that "simplifies" all images in a directory (recursivly). feel free to use it for your own uses)' - Likes: 1 - Views: 4894 + Likes: 2 + Views: 4919 Downloads: 77 - GameBananaType: Tool GameBananaId: 6579 @@ -9052,8 +9305,8 @@ Text: Adds an Addons tab to the menubar, which contains an Export to Postcard option. This allows easy creation of zipped maps. Likes: 0 - Views: 5079 - Downloads: 47 + Views: 5130 + Downloads: 48 - GameBananaType: Map GameBananaId: 203016 Name: Troll City @@ -9069,8 +9322,8 @@ out Troll City now, for the low cost of your soul and a contract signed! note: that last part was a joke, you dont need to actually sell your soul to me' Likes: 3 - Views: 8230 - Downloads: 189 + Views: 8305 + Downloads: 190 - GameBananaType: Gui GameBananaId: 34470 Name: Mini-Textbox for Madeline @@ -9080,8 +9333,8 @@ a remake of a mod I made a while ago, this is just an update to make the textbox look better. Likes: 1 - Views: 5349 - Downloads: 62 + Views: 5372 + Downloads: 64 - GameBananaType: Texture GameBananaId: 5219 Name: Fox's Decal Pack @@ -9089,8 +9342,8 @@ Description: whoa decals Text: a bunch of decals and stylegrounds useful for a bunch of stuff Likes: 0 - Views: 5746 - Downloads: 70 + Views: 5820 + Downloads: 72 - GameBananaType: Wip GameBananaId: 49542 Name: Enter the Sun @@ -9104,8 +9357,8 @@ second parts)) carpenter brut - le perv (b/c-side music) as this is still wip, all feedback is necessary!' Likes: 1 - Views: 4132 - Downloads: 66 + Views: 4143 + Downloads: 67 - GameBananaType: Map GameBananaId: 202901 Name: Celeste Castle @@ -9114,8 +9367,8 @@ Text: A castle emerges on the cliffs of Celeste Mountain. Can you find what secrets it hides? Likes: 1 - Views: 9292 - Downloads: 239 + Views: 9309 + Downloads: 240 - GameBananaType: Map GameBananaId: 202813 Name: Path of Hope @@ -9130,8 +9383,8 @@ then head over there and read the rules section! Thank you for enjoying Path of Hope! Likes: 25 - Views: 43208 - Downloads: 1035 + Views: 43628 + Downloads: 1089 - GameBananaType: Wip GameBananaId: 49513 Name: Celeste Google Translated @@ -9139,7 +9392,7 @@ Description: '' Text: This is my first project Likes: 0 - Views: 3056 + Views: 3062 Downloads: 53 - GameBananaType: Wip GameBananaId: 49474 @@ -9156,8 +9409,8 @@ sprites with random memes in an actually presentable manner that doesn''t look too bad. Link To Games Repainted: http://games-repainted.tumblr.com/' Likes: 0 - Views: 5138 - Downloads: 57 + Views: 5160 + Downloads: 58 - GameBananaType: Map GameBananaId: 202652 Name: C+ @@ -9169,7 +9422,7 @@ 7C+ > 8C+ > 1C+ > 6C+ > 4C+ > 2C+ > 3C+ > 5C+ Tips: No spike jump needed in 1C+. No ultra dash, corner boost or demodash needed in any levels.' Likes: 1 - Views: 5107 + Views: 5128 Downloads: 85 - GameBananaType: Gamefile GameBananaId: 7936 @@ -9180,8 +9433,8 @@ Hot Mod! Time only moves when you move, and that''s basically the entire gimmick. You can control a lot of stuff with the options!' Likes: 0 - Views: 8117 - Downloads: 86 + Views: 8149 + Downloads: 89 - GameBananaType: Map GameBananaId: 202603 Name: Dash Prologue @@ -9191,7 +9444,7 @@ You can dash now... go on! NOT AN ORIGINAL MAP! There is a leaderboard for this map, you should try your best :) https://www.speedrun.com/Celeste_Custom_Maps#Dash_... Likes: 2 - Views: 7955 + Views: 7988 Downloads: 136 - GameBananaType: Gamefile GameBananaId: 7926 @@ -9200,8 +9453,8 @@ Description: '' Text: A save file with 200 strawbs. Don't sue me. Please. Likes: 3 - Views: 8898 - Downloads: 1048 + Views: 8982 + Downloads: 1063 - GameBananaType: Gamefile GameBananaId: 7925 Name: Celeste Ruined @@ -9212,8 +9465,8 @@ using this mod, although they did change the text to be more family friendly! Playlist is here! Their channel is here! Likes: 0 - Views: 4968 - Downloads: 247 + Views: 5007 + Downloads: 248 - GameBananaType: Map GameBananaId: 202524 Name: The D-Sides Pack @@ -9229,17 +9482,17 @@ need to know anything that wasn''t taught in the base game, until the Summit D-Side (7D). 7D onwards requires Neutral Walljumps and Wavedashes. And like two ext. hypers on clouds lol 9D then requires a bunch more stuff, but it''s mostly taught - in the map. D-Sides Randomizer To play the D-Sides Randomizer, just install the - Celeste Randomizer mod and the latest D-Sides version. Then you can just toggle - them on in the Randomizer''s map list. More info on the difficulty and such in - the GitHub link further down. Randomizer Mod Download: https://gamebanana.com/tools/6848 - D-Sides Randomizer GitHub + more info: https://github.com/bigkahuna443/dsides-randomizer + in the map. D-Sides Randomizer (Currently not accessible) To play the D-Sides + Randomizer, just install the Celeste Randomizer mod and the latest D-Sides version. + Then you can just toggle them on in the Randomizer''s map list. More info on the + difficulty and such in the GitHub link further down. Randomizer Mod Download: + https://gamebanana.com/tools/6848 D-Sides Randomizer GitHub + more info: https://github.com/bigkahuna443/dsides-randomizer Good luck! ( if you need help or want to send me constructive feedback, feel free to shoot me a dm on discord. @monika#2237 ) ( or @bigkahuna#0491 for randomizer-related stuff )' Likes: 35 - Views: 193757 - Downloads: 4900 + Views: 195840 + Downloads: 5088 - GameBananaType: Map GameBananaId: 202521 Name: Testing Room @@ -9251,7 +9504,7 @@ bigger. It's really plain and simple but has a lot of things you can do. There's not really much else to say, other than that it's a room for testing. Likes: 2 - Views: 4466 + Views: 4477 Downloads: 136 - GameBananaType: Gamefile GameBananaId: 7891 @@ -9271,8 +9524,8 @@ \ left upset flip]\r\nOh, I met him alright.\r\nHe chased me out of there.\r\n\ After I cleaned up a bunch of junk for him." Likes: 3 - Views: 11716 - Downloads: 111 + Views: 11803 + Downloads: 114 - GameBananaType: Map GameBananaId: 202371 Name: Fox's Uncategorized Maps @@ -9287,7 +9540,7 @@ ironic and have owonese support , but the rest of the map isnt, so dont take this map as a "joke map"' Likes: 2 - Views: 4208 + Views: 4228 Downloads: 100 - GameBananaType: Skin GameBananaId: 166689 @@ -9300,9 +9553,9 @@ Niko (from OneShot), drawn by HEHEHE I AM A SUPAHSTAR SAGA World Machine (from OneShot), drawn by HEHEHE I AM A SUPAHSTAR SAGA and edited by me In the future, there may be exclusive maps or levelsets for one or more of these characters.' - Likes: 4 - Views: 15924 - Downloads: 375 + Likes: 5 + Views: 16045 + Downloads: 379 - GameBananaType: Map GameBananaId: 202241 Name: Halloween Collaboration Project 2018 @@ -9317,8 +9570,8 @@ project on the Mt. Celeste Climbing Association Discord server, having taken place in October of 2018. Huge thanks to everybody who contributed with their maps! Likes: 3 - Views: 12660 - Downloads: 398 + Views: 12707 + Downloads: 403 - GameBananaType: Gamefile GameBananaId: 7805 Name: Collaboration Utils @@ -9328,8 +9581,8 @@ resetters. I will not support placement of entities/triggers from this mod as they are intended to be used with Maple scripts and not within Ahorn. Likes: 4 - Views: 7836 - Downloads: 285 + Views: 7876 + Downloads: 289 - GameBananaType: Map GameBananaId: 202078 Name: Rolling Thunder @@ -9346,8 +9599,8 @@ in Ahorn, I still fully believe I made a map worth playing. Credit: Meowsmith - Map creator' Likes: 1 - Views: 2218 - Downloads: 63 + Views: 2223 + Downloads: 64 - GameBananaType: Map GameBananaId: 202060 Name: Tornado Valley @@ -9366,8 +9619,8 @@ for editing and cutting the custom music to loop Music source(heavily edited): https://youtu.be/YjHjLxwmoF0 [Update v.1.2 - Spyro Soundfont Collection!]' Likes: 10 - Views: 10330 - Downloads: 275 + Views: 10397 + Downloads: 281 - GameBananaType: Gamefile GameBananaId: 7644 Name: Sweet Victory Chapter Complete @@ -9377,7 +9630,7 @@ from the show SpongeBob SquarePants Because there's nothing better than hearing triumphant music after finishing that difficult B-Side Likes: 1 - Views: 2761 + Views: 2779 Downloads: 37 - GameBananaType: Gamefile GameBananaId: 7632 @@ -9389,8 +9642,8 @@ thing in content/dialogue and the image in content/dialogue/icons n youre good to go. Likes: 1 - Views: 8938 - Downloads: 231 + Views: 8983 + Downloads: 232 - GameBananaType: Map GameBananaId: 201716 Name: Switch Map Pack (Fuji) @@ -9410,7 +9663,7 @@ the current version is buggy) (by nameguy523) Includes a bonus custom ending sequence by nameguy523, Credits D-Side.' Likes: 1 - Views: 10587 + Views: 10659 Downloads: 141 - GameBananaType: Gamefile GameBananaId: 7555 @@ -9425,8 +9678,8 @@ 1.525.0 (Everest version your mod runs on, at least 525) - Name: OutbackHelper Version: 1.0.0' Likes: 8 - Views: 15836 - Downloads: 627 + Views: 16058 + Downloads: 651 - GameBananaType: Map GameBananaId: 201551 Name: GetOut @@ -9439,7 +9692,7 @@ a little difficult. C side: 2c get out of the old site. Not very difficult. At least it''s easier than 7c downhill.' Likes: 2 - Views: 4868 + Views: 4887 Downloads: 77 - GameBananaType: Map GameBananaId: 201550 @@ -9453,7 +9706,7 @@ go to play B side if you get stuck in A side. B side: 7a downhill. This is easier. C side: 7c downhill. This is very difficult.' Likes: 2 - Views: 4681 + Views: 4691 Downloads: 96 - GameBananaType: Map GameBananaId: 201446 @@ -9470,7 +9723,7 @@ unless anyone finds any issues. Be sure to comment here or poke me on discord if you really want, i'm lonely! Likes: 1 - Views: 1958 + Views: 1971 Downloads: 82 - GameBananaType: Map GameBananaId: 201414 @@ -9479,7 +9732,7 @@ Description: '' Text: WIP map that I'm not sure how to finish. Likes: 1 - Views: 1676 + Views: 1678 Downloads: 43 - GameBananaType: Map GameBananaId: 201404 @@ -9492,11 +9745,10 @@ creativity and ideas as one. I wish to thank all the people who participate in the feedback throughout the making of this campaign, actively and passively. Without your support I wouldn't be making custom content for Celeste. Have fun yo! Please - see the information written in the documents! It's very important :) There is - a leaderboard for this Campaign, you should be the best! https://www.speedrun.com/Celeste_Custom_Maps#Polyg... + see the information written in the documents! It's very important :) Likes: 18 - Views: 55199 - Downloads: 1064 + Views: 55787 + Downloads: 1100 - GameBananaType: Map GameBananaId: 201402 Name: DidacticAscended's Map Pack @@ -9506,8 +9758,8 @@ installed play levels in this order: 1: Antarctic Chill 2: Magmatic Heat 3: Abyssal Darkness bonus level: Kaizo Trials Have fun!' Likes: 1 - Views: 5203 - Downloads: 294 + Views: 5216 + Downloads: 296 - GameBananaType: Map GameBananaId: 201075 Name: Temple Remix feat. Mix Master Theo @@ -9515,8 +9767,8 @@ Description: '' Text: eh its okay Likes: 2 - Views: 1932 - Downloads: 73 + Views: 1938 + Downloads: 74 - GameBananaType: Map GameBananaId: 201051 Name: Gauntlet @@ -9526,7 +9778,7 @@ turned out. Special thanks to Okapi for testing my level since its earliest stages and didacticAscended for helping me learn stylegrounds and tidy up my presentation. Likes: 1 - Views: 3471 + Views: 3474 Downloads: 117 - GameBananaType: Map GameBananaId: 201002 @@ -9536,7 +9788,7 @@ Text: A level that may need some inspiration to pass. This map's difficulty is close to original levels. Include A,B&C-sides. Likes: 2 - Views: 3860 + Views: 3876 Downloads: 111 - GameBananaType: Map GameBananaId: 200909 @@ -9560,8 +9812,8 @@ from crashes and cheeses, to rooms being janky. I''ll be keen to hear about them. Thanks also to all the people who helped test!' Likes: 8 - Views: 7328 - Downloads: 148 + Views: 7344 + Downloads: 149 - GameBananaType: Map GameBananaId: 200895 Name: Outcast Outback @@ -9574,8 +9826,8 @@ in the .zip file. REQUIRES EVEREST 525+ AND THE OUTCAST OUTBACK HELPER (You can download it from the requirements list below) Likes: 3 - Views: 13200 - Downloads: 231 + Views: 13239 + Downloads: 238 - GameBananaType: Map GameBananaId: 200790 Name: Magenta Falls @@ -9585,8 +9837,8 @@ time with it :) he didnt want to upload it so i decided to do it because i liked it. enjoy! Likes: 1 - Views: 2031 - Downloads: 165 + Views: 2034 + Downloads: 166 - GameBananaType: Map GameBananaId: 200736 Name: Super Ogmo Boy remake @@ -9597,8 +9849,8 @@ for actual gameplay youre at the wrong place. special thanks to minecraftgamerpc giving me the assets of the game for this remake. Likes: 1 - Views: 2000 - Downloads: 49 + Views: 2015 + Downloads: 50 - GameBananaType: Map GameBananaId: 200702 Name: Collaboration Project June 2018 @@ -9609,8 +9861,8 @@ contributed with their maps! Credits might be off. Give me a poke on Discord if you want to be added there. Likes: 5 - Views: 17086 - Downloads: 426 + Views: 17127 + Downloads: 430 - GameBananaType: Map GameBananaId: 200498 Name: I Accidentally Four Cassette Blocks @@ -9623,8 +9875,8 @@ take itself very seriously outside of the actual cassette block room, and it likely won't ever be expanded upon. Likes: 1 - Views: 4678 - Downloads: 66 + Views: 4689 + Downloads: 67 - GameBananaType: Map GameBananaId: 200364 Name: Levels of Darkness @@ -9638,9 +9890,9 @@ the door in the main room and beat the level. Found an issue with the map? Be sure to ping me in the Mt. Celeste Climbing Association Discord server and i''ll try to fix the issue as soon as I can.' - Likes: 1 - Views: 4724 - Downloads: 91 + Likes: 2 + Views: 4741 + Downloads: 93 - GameBananaType: Map GameBananaId: 200348 Name: Maps of Celeste @@ -9648,7 +9900,7 @@ Description: '' Text: It's some levels that i made all by my self. Likes: 2 - Views: 5223 + Views: 5275 Downloads: 71 - GameBananaType: Map GameBananaId: 200343 @@ -9663,7 +9915,7 @@ range from medium to really hard. For more info check the Credits.txt in the .zip file. REQUIRES EVEREST 494+!' Likes: 1 - Views: 10715 + Views: 10776 Downloads: 191 - GameBananaType: Map GameBananaId: 200329 @@ -9679,8 +9931,8 @@ If you find any new glitches in the map, please let me know; you can find me on the official Celeste discord with discord tag Okapi#4096.' Likes: 1 - Views: 3644 - Downloads: 301 + Views: 3682 + Downloads: 303 - GameBananaType: Map GameBananaId: 200315 Name: Bullet Time @@ -9693,8 +9945,8 @@ clipping and wallbounce momentum conservation is required, as well as everything you're required to use in the main game. Likes: 1 - Views: 2977 - Downloads: 113 + Views: 2989 + Downloads: 114 - GameBananaType: Map GameBananaId: 200224 Name: 7b(single dash ver) @@ -9705,8 +9957,8 @@ Old Site B-side. It's better to play this map after the 7b/2b. This map is not very difficult. Please put the .zip into \Celeste\Mods to install. Likes: 4 - Views: 6010 - Downloads: 129 + Views: 6033 + Downloads: 130 - GameBananaType: Map GameBananaId: 200223 Name: Two Steps From Death @@ -9719,7 +9971,7 @@ it's unclear how to do a certain screen you can ask me in the Celeste Discord server if you like. Likes: 1 - Views: 2566 + Views: 2579 Downloads: 98 - GameBananaType: Map GameBananaId: 200220 @@ -9729,8 +9981,8 @@ Text: A somewhat faithful recreation of Mario 1-1 in Celeste Thanks to 0x0ade for the sound mod! Likes: 2 - Views: 14766 - Downloads: 434 + Views: 14842 + Downloads: 450 - GameBananaType: Map GameBananaId: 200217 Name: No Devil Lived On Map Pack @@ -9741,7 +9993,7 @@ are all reasonable to complete; the difficulty of this map is somewhere among the A Sides. Likes: 3 - Views: 2444 + Views: 2503 Downloads: 114 - GameBananaType: Map GameBananaId: 200151 @@ -9757,8 +10009,8 @@ and mechanics. I do try my best to include something new for those who have seen it all. Provide feedback. Please. I'm lonely :( Likes: 3 - Views: 5883 - Downloads: 240 + Views: 5922 + Downloads: 242 - GameBananaType: Map GameBananaId: 200132 Name: Cheyenne @@ -9768,8 +10020,8 @@ strats to complete but you need some if you want all strawberries. Made using Ahorn https://github.com/CelestialCartographers/Ahorn Likes: 3 - Views: 7011 - Downloads: 195 + Views: 7098 + Downloads: 198 - GameBananaType: Gamefile GameBananaId: 6801 Name: GhostNet @@ -9791,8 +10043,8 @@ --server as arguments or "connect" to localhost, and forward the port 2782 TCP and UDP on both your firewall and router.' Likes: 8 - Views: 113959 - Downloads: 2233 + Views: 114223 + Downloads: 2246 - GameBananaType: Skin GameBananaId: 163152 Name: Fabeline (formerly RainbowMod) @@ -9806,8 +10058,8 @@ file! (ModSettings/RainbowMod.yaml) Just place the .zip in your Mods directory. Don't extract it. Likes: 5 - Views: 28337 - Downloads: 785 + Views: 28689 + Downloads: 840 - GameBananaType: Tool GameBananaId: 6449 Name: Olympus - Everest Installer @@ -9827,5 +10079,5 @@ something. Everest only enables other mods. Take a look at the full feature list on the Everest website.' Likes: 26 - Views: 141430 - Downloads: 44793 + Views: 143690 + Downloads: 45879