stat.get_all
Overview
- Returns all stats with value, min, max, pct, and noDecay for the target character.
Metadata
| Field | Value |
|---|---|
| Display | Get All Stats |
| Category | stat |
| Access | Public |
| Scope | B2Authority |
| Tags | — |
| Aliases | — |
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| entity_id | entityId | no | — | Target entity ID (default: possessed) |
Returns
- Freeform result (shape is not fixed).
{ _type: string, stats: { <stat_name>: { value: float, min: float, max: float, pct: float } }, no_decay: bool, stat_names: { <stat_name>: string } } — stats and stat_names are objects keyed dynamically by stat name.
Usage
await inzoi.cli.execute('stat.get_all', {
entity_id: 0, // optional
});