Interface IEnfRecord

Unit

Declaration

type IEnfRecord = interface(IInterface)

Description

Record of NPC data in an Endless NPC File

Attributes
GUID['{6754DDB2-7C17-5CCE-AA86-5F36AC40EF20}']

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetName: string;
Public procedure SetName(Name: string);
Public function GetGraphicId: Cardinal;
Public procedure SetGraphicId(GraphicId: Cardinal);
Public function GetRace: Cardinal;
Public procedure SetRace(Race: Cardinal);
Public function GetBoss: Boolean;
Public procedure SetBoss(Boss: Boolean);
Public function GetChild: Boolean;
Public procedure SetChild(Child: Boolean);
Public function GetType: TNpcType;
Public procedure SetType(Type_: TNpcType);
Public function GetBehaviorId: Cardinal;
Public procedure SetBehaviorId(BehaviorId: Cardinal);
Public function GetHp: Cardinal;
Public procedure SetHp(Hp: Cardinal);
Public function GetTp: Cardinal;
Public procedure SetTp(Tp: Cardinal);
Public function GetMinDamage: Cardinal;
Public procedure SetMinDamage(MinDamage: Cardinal);
Public function GetMaxDamage: Cardinal;
Public procedure SetMaxDamage(MaxDamage: Cardinal);
Public function GetAccuracy: Cardinal;
Public procedure SetAccuracy(Accuracy: Cardinal);
Public function GetEvade: Cardinal;
Public procedure SetEvade(Evade: Cardinal);
Public function GetArmor: Cardinal;
Public procedure SetArmor(Armor: Cardinal);
Public function GetReturnDamage: Cardinal;
Public procedure SetReturnDamage(ReturnDamage: Cardinal);
Public function GetElement: TElement;
Public procedure SetElement(Element: TElement);
Public function GetElementDamage: Cardinal;
Public procedure SetElementDamage(ElementDamage: Cardinal);
Public function GetElementWeakness: TElement;
Public procedure SetElementWeakness(ElementWeakness: TElement);
Public function GetElementWeaknessDamage: Cardinal;
Public procedure SetElementWeaknessDamage(ElementWeaknessDamage: Cardinal);
Public function GetLevel: Cardinal;
Public procedure SetLevel(Level: Cardinal);
Public function GetExperience: Cardinal;
Public procedure SetExperience(Experience: Cardinal);
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property Name: string read GetName write SetName;
Public property GraphicId: Cardinal read GetGraphicId write SetGraphicId;
Public property Race: Cardinal read GetRace write SetRace;
Public property Boss: Boolean read GetBoss write SetBoss;
Public property Child: Boolean read GetChild write SetChild;
Public property Type_: TNpcType read GetType write SetType;
Public property BehaviorId: Cardinal read GetBehaviorId write SetBehaviorId;
Public property Hp: Cardinal read GetHp write SetHp;
Public property Tp: Cardinal read GetTp write SetTp;
Public property MinDamage: Cardinal read GetMinDamage write SetMinDamage;
Public property MaxDamage: Cardinal read GetMaxDamage write SetMaxDamage;
Public property Accuracy: Cardinal read GetAccuracy write SetAccuracy;
Public property Evade: Cardinal read GetEvade write SetEvade;
Public property Armor: Cardinal read GetArmor write SetArmor;
Public property ReturnDamage: Cardinal read GetReturnDamage write SetReturnDamage;
Public property Element: TElement read GetElement write SetElement;
Public property ElementDamage: Cardinal read GetElementDamage write SetElementDamage;
Public property ElementWeakness: TElement read GetElementWeakness write SetElementWeakness;
Public property ElementWeaknessDamage: Cardinal read GetElementWeaknessDamage write SetElementWeaknessDamage;
Public property Level: Cardinal read GetLevel write SetLevel;
Public property Experience: Cardinal read GetExperience write SetExperience;

Description

Methods

Public function GetByteSize: 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 GetGraphicId: Cardinal;

This item has no description.

Public procedure SetGraphicId(GraphicId: Cardinal);

This item has no description.

Public function GetRace: Cardinal;

This item has no description.

Public procedure SetRace(Race: Cardinal);

This item has no description.

Public function GetBoss: Boolean;

This item has no description.

Public procedure SetBoss(Boss: Boolean);

This item has no description.

Public function GetChild: Boolean;

This item has no description.

Public procedure SetChild(Child: Boolean);

This item has no description.

Public function GetType: TNpcType;

This item has no description.

Public procedure SetType(Type_: TNpcType);

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 GetHp: Cardinal;

This item has no description.

Public procedure SetHp(Hp: Cardinal);

This item has no description.

Public function GetTp: Cardinal;

This item has no description.

Public procedure SetTp(Tp: Cardinal);

This item has no description.

Public function GetMinDamage: Cardinal;

This item has no description.

Public procedure SetMinDamage(MinDamage: Cardinal);

This item has no description.

Public function GetMaxDamage: Cardinal;

This item has no description.

Public procedure SetMaxDamage(MaxDamage: Cardinal);

This item has no description.

Public function GetAccuracy: Cardinal;

This item has no description.

Public procedure SetAccuracy(Accuracy: Cardinal);

This item has no description.

Public function GetEvade: Cardinal;

This item has no description.

Public procedure SetEvade(Evade: Cardinal);

This item has no description.

Public function GetArmor: Cardinal;

This item has no description.

Public procedure SetArmor(Armor: Cardinal);

This item has no description.

Public function GetReturnDamage: Cardinal;

This item has no description.

Public procedure SetReturnDamage(ReturnDamage: Cardinal);

This item has no description.

Public function GetElement: TElement;

This item has no description.

Public procedure SetElement(Element: TElement);

This item has no description.

Public function GetElementDamage: Cardinal;

This item has no description.

Public procedure SetElementDamage(ElementDamage: Cardinal);

This item has no description.

Public function GetElementWeakness: TElement;

This item has no description.

Public procedure SetElementWeakness(ElementWeakness: TElement);

This item has no description.

Public function GetElementWeaknessDamage: Cardinal;

This item has no description.

Public procedure SetElementWeaknessDamage(ElementWeaknessDamage: Cardinal);

This item has no description.

Public function GetLevel: Cardinal;

This item has no description.

Public procedure SetLevel(Level: Cardinal);

This item has no description.

Public function GetExperience: Cardinal;

This item has no description.

Public procedure SetExperience(Experience: Cardinal);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this IEnfRecord 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 Name: string read GetName write SetName;

Note
Length must be 252 or less

Public property GraphicId: Cardinal read GetGraphicId write SetGraphicId;

Note
Value range is 0-64008

Public property Race: Cardinal read GetRace write SetRace;

Note
Value range is 0-252

Public property Boss: Boolean read GetBoss write SetBoss;

This item has no description.

Public property Child: Boolean read GetChild write SetChild;

This item has no description.

Public property Type_: TNpcType read GetType write SetType;

This item has no description.

Public property BehaviorId: Cardinal read GetBehaviorId write SetBehaviorId;

Note
Value range is 0-64008

Public property Hp: Cardinal read GetHp write SetHp;

Note
Value range is 0-16194276

Public property Tp: Cardinal read GetTp write SetTp;

Note
Value range is 0-64008

Public property MinDamage: Cardinal read GetMinDamage write SetMinDamage;

Note
Value range is 0-64008

Public property MaxDamage: Cardinal read GetMaxDamage write SetMaxDamage;

Note
Value range is 0-64008

Public property Accuracy: Cardinal read GetAccuracy write SetAccuracy;

Note
Value range is 0-64008

Public property Evade: Cardinal read GetEvade write SetEvade;

Note
Value range is 0-64008

Public property Armor: Cardinal read GetArmor write SetArmor;

Note
Value range is 0-64008

Public property ReturnDamage: Cardinal read GetReturnDamage write SetReturnDamage;

Note
Value range is 0-252

Public property Element: TElement read GetElement write SetElement;

This item has no description.

Public property ElementDamage: Cardinal read GetElementDamage write SetElementDamage;

Note
Value range is 0-64008

Public property ElementWeakness: TElement read GetElementWeakness write SetElementWeakness;

This item has no description.

Public property ElementWeaknessDamage: Cardinal read GetElementWeaknessDamage write SetElementWeaknessDamage;

Note
Value range is 0-64008

Public property Level: Cardinal read GetLevel write SetLevel;

Note
Value range is 0-252

Public property Experience: Cardinal read GetExperience write SetExperience;

Note
Value range is 0-16194276


Generated by PasDoc 0.16.0-snapshot.