~ruther/NosSmooth

ref: 933817752806f78c4dc59ee7041610ba8052874a NosSmooth/Data/NosSmooth.Data.Abstractions/Infos/IMonsterInfo.cs -rw-r--r-- 1.0 KiB
93381775 — František Boháček feat(pcap): do not use closure in connection helper 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
//  IMonsterInfo.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.Data.Abstractions.Language;

namespace NosSmooth.Data.Abstractions.Infos;

/// <summary>
/// The NosTale monster information.
/// </summary>
public interface IMonsterInfo : IVNumInfo
{
    /// <summary>
    /// Gets the name of the monster.
    /// </summary>
    TranslatableString Name { get; }

    /// <summary>
    /// Gets the default level of the monster.
    /// </summary>
    ushort Level { get; }

    /// <summary>
    /// Gets the default Range of the monster.
    /// </summary>
    short Range { get; }

    /// <summary>
    /// Gets the default NoticeRange of the monster.
    /// </summary>
    short NoticeRange { get; }

    /// <summary>
    /// Gets the default castTime of the monster.
    /// </summary>
    int CastTime { get; }

    /// <summary>
    /// Gets if the monster is Hostile.
    /// </summary>
    bool Hostile { get; }
}
Do not follow this link