From ffa2e952c99b0a859cc8d73d96680b66dc10cab9 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Tue, 13 Jan 2026 04:57:49 +0200 Subject: [PATCH] Add new track TwoFastTuFurious --- Assets/TwoFastTuFuriousIntro.ogg | 3 +++ Assets/TwoFastTuFuriousLoop.ogg | 3 +++ CHANGELOG.md | 1 + MuzikaGromche/Plugin.cs | 43 ++++++++++++++++++++++++++++++++ 4 files changed, 50 insertions(+) create mode 100644 Assets/TwoFastTuFuriousIntro.ogg create mode 100644 Assets/TwoFastTuFuriousLoop.ogg diff --git a/Assets/TwoFastTuFuriousIntro.ogg b/Assets/TwoFastTuFuriousIntro.ogg new file mode 100644 index 0000000..de419f0 --- /dev/null +++ b/Assets/TwoFastTuFuriousIntro.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad9934f1eefd193128e673965c04e19dc4253f6ef8cc99fdadd670af93b41df +size 530420 diff --git a/Assets/TwoFastTuFuriousLoop.ogg b/Assets/TwoFastTuFuriousLoop.ogg new file mode 100644 index 0000000..107450b --- /dev/null +++ b/Assets/TwoFastTuFuriousLoop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c37239e58eaaf4498409067afc34487263959913cd35a90ca5b9758886e1c50 +size 606917 diff --git a/CHANGELOG.md b/CHANGELOG.md index 62b61b4..0dbc496 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## MuzikaGromche 1337.9001.67 +- Added a new track TwoFastTuFurious (from the same artist as PickUpSticks), thematic to the upcoming Valentine's Day. ## MuzikaGromche 1337.9001.4 - v73 Chinese New Year Edition diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index 51b00e6..463d11a 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -1014,6 +1014,49 @@ namespace MuzikaGromche }, ], }, + new SelectableAudioTrack + { + Name = "TwoFastTuFurious", + AudioType = AudioType.OGGVORBIS, + Language = Language.ENGLISH, + WindUpTimer = 36.08f, + Bars = 24, // 24 * 4 = 96 beats + BeatsOffset = 0f, + ColorTransitionIn = 0.4f, + ColorTransitionOut = 0.6f, + ColorTransitionEasing = Easing.InOutCubic, + Palette = Palette.Parse([ + "#F0FBFF", "#9ED9FF", "#0B95FF", + "#66C7FF", "#CAE8FF", "#3BB6FF", + ]), + // Allow chorus lyrics to be displayed only the first time, so they don't get too repetitive + LoopOffset = 48, + FadeOutBeat = -6f - 48f, + FadeOutDuration = 6f, + FlickerLightsTimeSeries = [-80, -14, 34, 82], + Lyrics = [ + (-126, "Starting from here,\nlet's make a promise"), + (-110, "You and me, let's just be honest"), + (-100, "We're gonna run,\nnothing can stop us"), + (-89, "Even the night,\nthat falls all around us"), + (-80, "Soon there will be\nlaughter and voices"), + (-70, "Beyond the clouds,\nover the mountains"), + (-62, "We'll run away,\non roads that are empty"), + (-55, "Lights from the airfield,\nshining upon you"), + (-48, "Nothing can stop this"), + (-44, "Nothing can stop this,\nnot now, I love you"), + (-40, "They're not gonna get us"), + (-36, "They're not gonna get us\nTHEY'RE NOT GONNA GET US"), + ], + DrunknessLoopOffsetTimeSeries = new( + [-48f, -47.75f, -42f, 0f, 0.25f, 6f, 48f, 48.25f, 54f], + [0f, 0.5f, 0f, 0f, 0.5f, 0f, 0f, 0.5f, 0f]), + CondensationLoopOffsetTimeSeries = new( + [-24f, -23.75f, -18f, 24f, 24.25f, 30f, 72f, 72.25f, 78f], + [0f, 0.5f, 0f, 0f, 0.5f, 0f, 0f, 0.5f, 0f]), + // GameOverText"[ LOVE GONNA GET US ]", + GameOverText = "[ O NOES, THEY GOT US ]", + }, ]; private static int GetCurrentSeed()