예제 #1
0
        public static string ToText(
            this EorzeaTimeElement value,
            EorzeaCalendarLocale locale = EorzeaCalendarLocale.EN)
        => new[, ]
        {
            { "氷の刻", "Ice Time" },
            { "水の刻", "Water Time" },
            { "風の刻", "Wind Time" },
            { "雷の刻", "Lightning Time" },
            { "火の刻", "Fire Time" },
            { "土の刻", "Earth Time" },
        }

        [(int)value, (int)locale];
예제 #2
0
        public static string ToText(
            this EorzeaTerm value,
            EorzeaCalendarLocale locale = EorzeaCalendarLocale.EN)
        => new[, ]
        {
            { "氷属月", "Ice" },
            { "水属月", "Water" },
            { "風属月", "Wind" },
            { "雷属月", "Lightning" },
            { "火属月", "Fire" },
            { "土属月", "Earth" },
        }

        [(int)value, (int)locale];
예제 #3
0
        public static string ToText(
            this EorzeaSun value,
            EorzeaCalendarLocale locale = EorzeaCalendarLocale.EN)
        => new[, ]
        {
            { "風属日", "Wind Sun" },
            { "雷属日", "Lightning Sun" },
            { "火属日", "Fire Sun" },
            { "土属日", "Earth Sun" },
            { "氷属日", "Ice Sun" },
            { "水属日", "Water Sun" },
            { "星極日", "Astral Sun" },
            { "霊極日", "Umbral Sun" },
        }

        [(int)value, (int)locale];
예제 #4
0
        public static string ToText(
            this EorzeaMoon value,
            EorzeaCalendarLocale locale = EorzeaCalendarLocale.EN)
        => new[, ]
        {
            { "星1月", "1st Astral Moon" },
            { "霊1月", "1st Umbral Moon" },
            { "星2月", "2nd Astral Moon" },
            { "霊2月", "2nd Umbral Moon" },
            { "星3月", "3rd Astral Moon" },
            { "霊3月", "3rd Umbral Moon" },
            { "星4月", "4th Astral Moon" },
            { "霊4月", "4th Umbral Moon" },
            { "星5月", "5th Astral Moon" },
            { "霊5月", "5th Umbral Moon" },
            { "星6月", "6th Astral Moon" },
            { "霊6月", "6th Umbral Moon" },
        }

        [(int)value, (int)locale];