MerchantRPG.GeneticParty.Processing.PartyFitness.potionName C# (CSharp) Method

potionName() private method

private potionName ( int potionType ) : string
potionType int
return string
        private string potionName(int potionType)
        {
            if (potionType == 1)
                return "atk";
            if (potionType == 2)
                return "matk";
            if (potionType == 3)
                return "def";
            return potionType == 4 ?
                "mdef" :
                "acc";
        }