ABM_creator.Consumable.GetAuraDescription C# (CSharp) Метод

GetAuraDescription() защищенный Метод

protected GetAuraDescription ( int spellLevel, CNWSpell spell ) : string
spellLevel int
spell CNWSpell
Результат string
        protected virtual string GetAuraDescription(int spellLevel, CNWSpell spell)
        {
            if (Globals.spellschools2da["Label"][spell.GetSpellSchool()].ToLower() == "g")
                return "Under a Detect Magic or similar spell, this item radiates a " + GetAuraStrength(spellLevel) + " magical aura.";
            return "Under a Detect Magic or similar spell, this item radiates a " + GetAuraStrength(spellLevel) + " magical aura of " + Globals.spellschools2da["Label"][spell.GetSpellSchool()].ToLower();
        }