Interface ISkillMasterRecord

Unit

Declaration

type ISkillMasterRecord = interface(IInterface)

Description

Record of Skill Master data in an Endless Skill Master File

Attributes
GUID['{1E9CE215-577E-5E9A-88BF-2B39387942B8}']

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetBehaviorId: Cardinal;
Public procedure _SetBehaviorId(BehaviorId: Cardinal);
Public function _GetName: string;
Public procedure _SetName(Name: string);
Public function _GetMinLevel: Cardinal;
Public procedure _SetMinLevel(MinLevel: Cardinal);
Public function _GetMaxLevel: Cardinal;
Public procedure _SetMaxLevel(MaxLevel: Cardinal);
Public function _GetClassRequirement: Cardinal;
Public procedure _SetClassRequirement(ClassRequirement: Cardinal);
Public function _GetSkills: TArray<ISkillMasterSkillRecord>;
Public procedure _SetSkills(Skills: TArray<ISkillMasterSkillRecord>);
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property BehaviorId: Cardinal read _GetBehaviorId write _SetBehaviorId;
Public property Name: string read _GetName write _SetName;
Public property MinLevel: Cardinal read _GetMinLevel write _SetMinLevel;
Public property MaxLevel: Cardinal read _GetMaxLevel write _SetMaxLevel;
Public property ClassRequirement: Cardinal read _GetClassRequirement write _SetClassRequirement;
Public property Skills: TArray<ISkillMasterSkillRecord> read _GetSkills write _SetSkills;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Public function _GetBehaviorId: Cardinal;

This item has no description.

Public procedure _SetBehaviorId(BehaviorId: Cardinal);

This item has no description.

Public function _GetName: string;

This item has no description.

Public procedure _SetName(Name: string);

This item has no description.

Public function _GetMinLevel: Cardinal;

This item has no description.

Public procedure _SetMinLevel(MinLevel: Cardinal);

This item has no description.

Public function _GetMaxLevel: Cardinal;

This item has no description.

Public procedure _SetMaxLevel(MaxLevel: Cardinal);

This item has no description.

Public function _GetClassRequirement: Cardinal;

This item has no description.

Public procedure _SetClassRequirement(ClassRequirement: Cardinal);

This item has no description.

Public function _GetSkills: TArray<ISkillMasterSkillRecord>;

This item has no description.

Public procedure _SetSkills(Skills: TArray<ISkillMasterSkillRecord>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this ISkillMasterRecord object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to

Properties

Public property ByteSize: Cardinal read _GetByteSize;

The size of the data that this object was deserialized from.

Note
0 if the instance was not created by the Deserialize method.

Public property BehaviorId: Cardinal read _GetBehaviorId write _SetBehaviorId;

Behavior ID of the Skill Master NPC

Note
Value range is 0-64008

Public property Name: string read _GetName write _SetName;

Note
Length must be 252 or less

Public property MinLevel: Cardinal read _GetMinLevel write _SetMinLevel;

Minimum level required to use this Skill Master

Note
Value range is 0-252

Public property MaxLevel: Cardinal read _GetMaxLevel write _SetMaxLevel;

Maximum level allowed to use this Skill Master

Note
Value range is 0-252

Public property ClassRequirement: Cardinal read _GetClassRequirement write _SetClassRequirement;

Class required to use this Skill Master

Note
Value range is 0-252

Public property Skills: TArray<ISkillMasterSkillRecord> read _GetSkills write _SetSkills;

Note
Length must be 64008 or less


Generated by PasDoc 0.16.0-snapshot.