From 782105b72e821cadf199017d4950c7c5124aa957 Mon Sep 17 00:00:00 2001 From: 0auBSQ <58159635+0auBSQ@users.noreply.github.com> Date: Sun, 10 Dec 2023 23:56:36 +0900 Subject: [PATCH] set default displayed difficulty panel to Normal, rebalance rarity and effects bonuses --- OpenTaiko/src/Common/CConfigIni.cs | 2 +- OpenTaiko/src/Databases/DBPuchichara.cs | 2 +- OpenTaiko/src/Helpers/HRarity.cs | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenTaiko/src/Common/CConfigIni.cs b/OpenTaiko/src/Common/CConfigIni.cs index 356e645f..d8ffd09e 100644 --- a/OpenTaiko/src/Common/CConfigIni.cs +++ b/OpenTaiko/src/Common/CConfigIni.cs @@ -1922,7 +1922,7 @@ namespace TJAPlayer3 this.bBranchGuide = false; this.nScoreMode = 2; - this.nDefaultCourse = (int)Difficulty.Edit + 1; + this.nDefaultCourse = (int)Difficulty.Normal; this.nBranchAnime = 1; this.b大音符判定 = false; diff --git a/OpenTaiko/src/Databases/DBPuchichara.cs b/OpenTaiko/src/Databases/DBPuchichara.cs index 8b7df7da..0247d35e 100644 --- a/OpenTaiko/src/Databases/DBPuchichara.cs +++ b/OpenTaiko/src/Databases/DBPuchichara.cs @@ -22,7 +22,7 @@ namespace TJAPlayer3 if (Autoroll > 0) mult *= 0f; if (ShowAdlib == true) mult *= 0.9f; - if (AllPurple == true) mult *= 1.1f; + //if (AllPurple == true) mult *= 1.1f; return mult; } diff --git a/OpenTaiko/src/Helpers/HRarity.cs b/OpenTaiko/src/Helpers/HRarity.cs index ae73c119..9a695526 100644 --- a/OpenTaiko/src/Helpers/HRarity.cs +++ b/OpenTaiko/src/Helpers/HRarity.cs @@ -33,10 +33,10 @@ namespace TJAPlayer3 { ["Poor"] = 0.8f, ["Common"] = 1f, - ["Uncommon"] = 1.1f, - ["Rare"] = 1.2f, - ["Epic"] = 1.3f, - ["Legendary"] = 1.5f, + ["Uncommon"] = 1f, + ["Rare"] = 1f, + ["Epic"] = 1f, + ["Legendary"] = 1f, }; public static Color tRarityToColor(string rarity)