Beispiel #1
0
        public static bool IsCanTwiceSpell(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.IsCanTwiceSpell);
            }
            return(false);
        }
Beispiel #2
0
        public static float Attack(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.Attack);
            }
            return(0);
        }
Beispiel #3
0
        public static int SpellID(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.SpellID);
            }
            return(0);
        }
Beispiel #4
0
        public static string Content(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.Content);
            }
            return("Empty!");
        }
Beispiel #5
0
        public static string EquiPos(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.EquiPos);
            }
            return("Empty!");
        }
Beispiel #6
0
        public static int WeponModeIndex(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.WeaponModeIndex);
            }
            return(0);
        }
Beispiel #7
0
        public static float GatherValue(int sid)
        {
            ItemTemp temp = It.Find(ar => {
                if (ar.Id == sid)
                {
                    return(true);
                }
                return(false);
            });

            if (temp != null)
            {
                return(temp.GatherValue);
            }
            return(0);
        }