Ejemplo n.º 1
0
                } // end GetItemGradeWithID

                public string GetItemType(string id)
                {
                    if (null == id)
                    {
                        DebugTool.LogError("ItemConfig GetItemType id is null!!!");
                        return("null");
                    } // end if
                    if (id.Length < 2)
                    {
                        ConsoleTool.SetWarning("ItemConfig GetItemType ID:" + id);
                        return("null");
                    } // end if
                    string prefix = id.Substring(0, 2);

                    switch (prefix)
                    {
                    default:
                        DebugTool.LogError("ItemConfig GetItemType id error!!!" + " ID:" + id);
                        return("null");

                    case "10": return(ConstConfig.EQUIP);

                    case "20": return(ConstConfig.CONSUME);

                    case "30": return(ConstConfig.STUFF);

                    case "40": return(ConstConfig.PRINT);
                    } // end switch
                }     // end GetItemTypeWithID