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
id
The unique identifier for the pet.
public int id
Field Value
petCode
A unique code identifying the pet.
public string petCode
Field Value
petId
The specific ID of the pet.
public int petId
Field Value
rarityCode
The rarity of the pet (e.g., "common", "rare").
public string rarityCode
Field Value
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
Last updated