editDino

Changes a tamed dino. The dino must not be dead, in a cryopod, or uploaded.

Signatures

beacon.editDino(dinoId, dinoInfo);

Parameters

dinoId

The Sentinel UUID of the tamed dino to edit.

dinoInfo

An object describing one or more specific details about the dino to change. It supports the following properties:

Property Type Notes
isSterilized Boolean Set to true to sterilize the dino, false to unsterilize.
isFemale Boolean Set to true to change the dino to female, false to change the dino to male. Can be used to add gender to a dino that does not normally have gender.

Examples

Unsterilize breeder Rex

const dinoId = '8ebd16a3-6055-5d6e-8898-7021b1a19e73';
const dinoInfo = {
  isSterilized: false,
};
beacon.editDino(dinoId, dinoInfo);

See Also