NinetyEight.NEUserPet

Struct NEUserPet

Namespace: NinetyEight Assembly: APIReference.dll

Represents a user's pet in the game, including its attributes such as type, rarity, and evolution status. Used to track a player's pets and their progression.

[Serializable]
public struct NEUserPet

Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

Fields

evolution

The evolution level of the pet, or null if no evolution.

public int? evolution

Field Value

int?

gender

The gender of the pet (e.g., 0 for male, 1 for female).

public int gender

Field Value

int

id

The unique identifier for the pet.

public int id

Field Value

int

petCode

A unique code identifying the pet.

public string petCode

Field Value

string

petId

The specific ID of the pet.

public int petId

Field Value

int

rarityCode

The rarity of the pet (e.g., "common", "rare").

public string rarityCode

Field Value

string

tokenId

A token ID representing the pet, or -1 if not assigned.

public int? tokenId

Field Value

int?

type

The type of the pet (e.g., "dragon", "dog").

public string type

Field Value

string

Last updated