Interface IShopRecord

Unit

Declaration

type IShopRecord = interface(IInterface)

Description

Record of Shop data in an Endless Shop File

Attributes
GUID['{06744585-0B84-5E15-A205-E389B99B115B}']

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 _GetTrades: TArray<IShopTradeRecord>;
Public procedure _SetTrades(Trades: TArray<IShopTradeRecord>);
Public function _GetCrafts: TArray<IShopCraftRecord>;
Public procedure _SetCrafts(Crafts: TArray<IShopCraftRecord>);
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 Trades: TArray<IShopTradeRecord> read _GetTrades write _SetTrades;
Public property Crafts: TArray<IShopCraftRecord> read _GetCrafts write _SetCrafts;

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 _GetTrades: TArray<IShopTradeRecord>;

This item has no description.

Public procedure _SetTrades(Trades: TArray<IShopTradeRecord>);

This item has no description.

Public function _GetCrafts: TArray<IShopCraftRecord>;

This item has no description.

Public procedure _SetCrafts(Crafts: TArray<IShopCraftRecord>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this IShopRecord 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;

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 shop

Note
Value range is 0-252

Public property MaxLevel: Cardinal read _GetMaxLevel write _SetMaxLevel;

Maximum level allowed to use this shop

Note
Value range is 0-252

Public property ClassRequirement: Cardinal read _GetClassRequirement write _SetClassRequirement;

Class required to use this shop

Note
Value range is 0-252

Public property Trades: TArray<IShopTradeRecord> read _GetTrades write _SetTrades;

Note
Length must be 64008 or less

Public property Crafts: TArray<IShopCraftRecord> read _GetCrafts write _SetCrafts;

Note
Length must be 252 or less


Generated by PasDoc 0.16.0-snapshot.