mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-03 17:29:13 +00:00
43ffde0918
Not sure if there'll be ones for other languages, hopefully not. dupe checker: var langs = new string[] {"en", "ja", "ko", "es", "it", "de", "fr", "zh"}; foreach (var l in langs) { var names = new GameStrings(l).itemlist; var dupe = names .Select((z, i) => new {Index = i, Value = z}) .GroupBy(z => z.Value) .Where(z => z.Key != "???") .Where(z => z.Key != "???") .Where(z => z.Key != "(?)") .Where(z => z.Count() >= 2) .ToArray(); if (dupe.Length == 0) continue; l.Dump(); dupe.Dump(); } |
||
---|---|---|
.. | ||
GameInfo.cs | ||
GameStrings.cs | ||
GeoLocation.cs | ||
MemoryArgType.cs | ||
MemoryStrings.cs |