Update 4.1 resources(Avatar/Dungeon/Item/Weapon )

This commit is contained in:
2023-09-29 14:13:58 +08:00
parent 1993d3d295
commit 1c49c41b71
20 changed files with 1960 additions and 729 deletions

View File

@@ -2,7 +2,6 @@
// ReSharper disable InconsistentNaming
// ReSharper disable IdentifierTypo
using System;
using System.Collections.Generic;
namespace GrasscutterTools.Game.Inventory
@@ -169,6 +168,8 @@ namespace GrasscutterTools.Game.Inventory
public static string ToTranslatedString(this MaterialType materialType, string language)
{
if (!TextMapCHS.ContainsKey(materialType))
return materialType.ToString();
return language.StartsWith("zh") ? TextMapCHS[materialType] : TextMapEN[materialType];
}
}