ABM_creator.TradeScroll.cost C# (CSharp) 메소드

cost() 보호된 메소드

protected cost ( int spellLevel, int casterLevel ) : int
spellLevel int
casterLevel int
리턴 int
        override protected int cost(int spellLevel, int casterLevel)
        {
            if (spellLevel == 0)
                return 12;
            else if (spellLevel == 1)
                return 25;
            else return spellLevel * 50;
        }