ACR_Items.Pricing.GetIsMasterworkAmmunition C# (CSharp) 메소드

GetIsMasterworkAmmunition() 개인적인 정적인 메소드

private static GetIsMasterworkAmmunition ( CLRScriptBase script, List itProp ) : bool
script CLRScriptFramework.CLRScriptBase
itProp List
리턴 bool
        private static bool GetIsMasterworkAmmunition(CLRScriptBase script, List<PricedItemProperty> itProp)
        {
            foreach (PricedItemProperty prop in itProp)
            {
                if (script.GetItemPropertyType(prop.Property) == ITEM_PROPERTY_DAMAGE_BONUS)
                {
                    return true;
                }
            }
            return false;
        }