Class TCharacterStatsEquipmentChange

Unit

Declaration

type TCharacterStatsEquipmentChange = class(TInterfacedObject, ICharacterStatsEquipmentChange)

Description

Character stats data. Sent when an item is equipped or unequipped.

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetMaxHp: Cardinal;
Public procedure _SetMaxHp(MaxHp: Cardinal);
Public function _GetMaxTp: Cardinal;
Public procedure _SetMaxTp(MaxTp: Cardinal);
Public function _GetBaseStats: ICharacterBaseStats;
Public procedure _SetBaseStats(BaseStats: ICharacterBaseStats);
Public function _GetSecondaryStats: ICharacterSecondaryStats;
Public procedure _SetSecondaryStats(SecondaryStats: ICharacterSecondaryStats);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TCharacterStatsEquipmentChange;

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property MaxHp: Cardinal read _GetMaxHp write _SetMaxHp;
Public property MaxTp: Cardinal read _GetMaxTp write _SetMaxTp;
Public property BaseStats: ICharacterBaseStats read _GetBaseStats write _SetBaseStats;
Public property SecondaryStats: ICharacterSecondaryStats read _GetSecondaryStats write _SetSecondaryStats;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Public function _GetMaxHp: Cardinal;

This item has no description.

Public procedure _SetMaxHp(MaxHp: Cardinal);

This item has no description.

Public function _GetMaxTp: Cardinal;

This item has no description.

Public procedure _SetMaxTp(MaxTp: Cardinal);

This item has no description.

Public function _GetBaseStats: ICharacterBaseStats;

This item has no description.

Public procedure _SetBaseStats(BaseStats: ICharacterBaseStats);

This item has no description.

Public function _GetSecondaryStats: ICharacterSecondaryStats;

This item has no description.

Public procedure _SetSecondaryStats(SecondaryStats: ICharacterSecondaryStats);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TCharacterStatsEquipmentChange object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to
Public class function Deserialize(Reader: TEoReader): TCharacterStatsEquipmentChange;

Deserializes an instance of TCharacterStatsEquipmentChange from the provided TEoReader.

Parameters
Reader
The reader that the object will be deserialized from
Returns

The deserialized object

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 MaxHp: Cardinal read _GetMaxHp write _SetMaxHp;

Note
Value range is 0-64008

Public property MaxTp: Cardinal read _GetMaxTp write _SetMaxTp;

Note
Value range is 0-64008

Public property BaseStats: ICharacterBaseStats read _GetBaseStats write _SetBaseStats;

This item has no description.

Public property SecondaryStats: ICharacterSecondaryStats read _GetSecondaryStats write _SetSecondaryStats;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.