diff --git a/Assets/OnePartiyaUdarIntro.ogg b/Assets/OnePartiyaUdarIntro.ogg new file mode 100644 index 0000000..a869d1f --- /dev/null +++ b/Assets/OnePartiyaUdarIntro.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fac45c7cede535a77e75d485a0eb387cfeef8c90fbd868cbbcce000b3d859a1b +size 647544 diff --git a/Assets/OnePartiyaUdarLoop.ogg b/Assets/OnePartiyaUdarLoop.ogg new file mode 100644 index 0000000..87791b7 --- /dev/null +++ b/Assets/OnePartiyaUdarLoop.ogg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c424ab42a0ae325bd2c7e6ec6c9e8e8034b6322146a3bff267e4b80877af8a81 +size 302557 diff --git a/CHANGELOG.md b/CHANGELOG.md index 17eabf4..8d755c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## MuzikaGromche 1337.420.9002 +- Added a new track OnePartiyaUdar in Japanese language. ## MuzikaGromche 1337.420.9001 - Multiverse Edition diff --git a/MuzikaGromche/Plugin.cs b/MuzikaGromche/Plugin.cs index c04cb9c..2db5318 100644 --- a/MuzikaGromche/Plugin.cs +++ b/MuzikaGromche/Plugin.cs @@ -565,6 +565,26 @@ namespace MuzikaGromche }, ], }, + new SelectableAudioTrack + { + Name = "OnePartiyaUdar", + AudioType = AudioType.OGGVORBIS, + Language = Language.JAPANESE, + WindUpTimer = 41.27f, + Bars = 12, + BeatsOffset = 0.3f, + ColorTransitionIn = 0.6f, + ColorTransitionOut = 0.15f, + ColorTransitionEasing = Easing.InOutExpo, + Palette = Palette.Parse([ + "#9C3C37", "#E9BF5C", "#B5E3EA", "#662422", "#EBC3A8", "#AA8238", + ]), + LoopOffset = 0, + FadeOutBeat = -8, + FadeOutDuration = 6, + FlickerLightsTimeSeries = [-68.5f, -16.5f, 30.5f], + Lyrics = [], + }, ]; public static ISelectableTrack ChooseTrack() @@ -715,6 +735,7 @@ namespace MuzikaGromche public static readonly Language ENGLISH = new("EN", "English"); public static readonly Language RUSSIAN = new("RU", "Russian"); public static readonly Language KOREAN = new("KO", "Korean"); + public static readonly Language JAPANESE = new("JP", "Japanese"); public static readonly Language HINDI = new("HI", "Hindi"); }