EasyCastleUNITY

디아블로 무기 King's Sword of Haste 본문

C#프로그래밍

디아블로 무기 King's Sword of Haste

EasyCastleT 2023. 7. 19. 16:10

using System;
using System.Data.SqlTypes;

namespace HelloWorld
{ 
    internal class Program
    {
        static void Main(string[] args)
        {
            string weaponName = "King's Sword of Haste";
            string weaponType = "Magic Sword";
            float damage = 4.2f;
            int minDamage =2;
            int maxDamage =4;
            float attackSpeed = 1.40f;
            int rndMP = 3;
            Console.WriteLine(weaponName);
            Console.WriteLine(weaponType+"\n");
            Console.WriteLine("{0}",damage);
            Console.WriteLine("Damage Per Second\n");
            Console.WriteLine("{0}-{1} Damage", minDamage,maxDamage);
            Console.WriteLine("{0} Attacks per Second\n", attackSpeed);
            Console.WriteLine("+{0} Random Magic Properties",rndMP);
        }
    }
}

'C#프로그래밍' 카테고리의 다른 글

디아블로 무기 Longsword  (0) 2023.07.19
디아블로 무기 God Butcher  (0) 2023.07.19
디아블로 무기 Marauder Axe  (0) 2023.07.19
디아블로 무기 Heavy Axe  (0) 2023.07.19
디아블로 무기 Hand Axe  (0) 2023.07.19