protected void ApplyInstantEffect(CUseEffect.InstantEffect instantEffect)
    {
        // 데미지 효과 지정
        ApplyHpChange(instantEffect.hpChange);

        // 그 외 효과 지정
    }
Example #2
0
    private static string CreateInstantEffectText(CUseEffect.InstantEffect instantEffect)
    {
        string hpChangeText;

        if (!String.IsNullOrEmpty(hpChangeText = CreateHpChangeText(instantEffect.hpChange)))
        {
            return("즉시 " + hpChangeText + "\n");
        }
        else
        {
            return("");
        }
    }