Terraria.Player.ArmorSetDye C# (CSharp) 메소드

ArmorSetDye() 공개 메소드

public ArmorSetDye ( ) : int
리턴 int
        public int ArmorSetDye()
        {
            switch (Main.rand.Next(3))
            {
                case 0:
                    return this.cHead;
                case 1:
                    return this.cBody;
                case 2:
                    return this.cLegs;
                default:
                    return this.cBody;
            }
        }
Player