Dino

The Dino class represents a tamed creature. Sentinel does not track wild creatures.

Properties

Property Type Notes
dinoAge Number A value, greater than 0 but less than or equal to 1, that presents the creature’s maturity. Less than 0.1 is baby, less than 0.5 is juvenille, less than 1 is adolescent, and 1 is adult.
dinoDisplayName String A reliable name string to use in messages. When the creature has a name, that name will be used. When the creature does not have a name, returns the species instead.
dinoGender String One of None, Female, or Male.
dinoHasGender Boolean True if the creature has a gender.
dinoId String A Sentinel-generated v5 UUID to uniquely identify this creature.
dinoIsDead Boolean True if the creature is currently dead. Dead creatures are purged from Sentinel after 30 days.
dinoIsFemale Boolean True if the creature is female.
dinoIsFrozen Boolean True if the creature is currently stored in a cryopod.
dinoIsUploaded Boolean True if the creature is currently uploaded to an obelisk, transmitted, loot drop, or similar.
dinoLevel Number The creatures’s level.
dinoName String The creature name. Not all creatures have names, so this value may be empty, such as after taming.
dinoNameTag String The “name tag” of the species. This is a value used to group similar creatures together and allows the game to identify which saddles fit onto each creature.
dinoNumber Number A 64-bit unsigned integer that the game uses to uniquely identify the creature.
dinoRestoreEligible Boolean True when the creature can be revived with Sentinel’s revive feature. This usually means the creature is dead and backup cryopod data is available.
dinoSpecies String The official species name of the creature.
dinoSpeciesPath String The blueprint path of the creature species.
dinoStatus String One of Deployed, Dead, Frozen, or Uploaded.
tribeId String The Sentinel-generated v5 UUID of the tribe the creature belongs to.

Example Instance

{
  "dinoAge": 1.0,
  "dinoDisplayName": "Biljak",
  "dinoGender": "Female",
  "dinoHasGender": true,
  "dinoId": "8ebd16a3-6055-5d6e-8898-7021b1a19e73",
  "dinoIsDead": false,
  "dinoIsFemale": true,
  "dinoIsFrozen": false,
  "dinoIsUploaded": false,
  "dinoLevel": 32,
  "dinoName": "Biljak",
  "dinoNameTag": "Dodo"
  "dinoNumber": 183600354641289556,
  "dinoRestoreEligible": false,
  "dinoSpecies": "Dodo",
  "dinoSpeciesPath": "/Game/PrimalEarth/Dinos/Dodo/Dodo_Character_BP.Dodo_Character_BP",
  "dinoStatus": "Deployed",
  "tribeId": "b72a9dd3-1a64-52a2-8f9c-f90409c871f0"
}