Table of Contents

Class Explorer

Namespace
Nekoyume.Model.AdventureBoss
Assembly
Lib9c.dll
public class Explorer : IBencodable
Inheritance
Explorer
Implements
IBencodable
Inherited Members

Constructors

Explorer(IValue)

public Explorer(IValue bencoded)

Parameters

bencoded IValue

Explorer(Address, string)

public Explorer(Address avatarAddress, string name)

Parameters

avatarAddress Address
name string

Fields

AvatarAddress

public Address AvatarAddress

Field Value

Address

Claimed

public bool Claimed

Field Value

bool

Floor

public int Floor

Field Value

int

MaxFloor

public int MaxFloor

Field Value

int

Name

public string Name

Field Value

string

Score

public int Score

Field Value

int

UsedApPotion

public int UsedApPotion

Field Value

int

UsedGoldenDust

public int UsedGoldenDust

Field Value

int

UsedNcg

public BigInteger UsedNcg

Field Value

BigInteger

Properties

Bencoded

An Bencodex.Types.IValue representation of this object that can be decoded back to instantiate an equal object. The decoded object must be equal to the original in the sense that Equals(T) should be true.

public IValue Bencoded { get; }

Property Value

IValue

Remarks

Note that the only requirement is that the produced Bencodex.Types.IValue can be decoded back to an equal object. This representation may not be canonical in the sense that additional junk data may be present in an Bencodex.Types.IValue that one may wish to decode and this may be discarded while decoding.

A specific implemnetation may decide to only allow the canonical representation to be decoded.