skill.get_all
Overview
- Returns all skills with current level, max level, and localized name for the target character.
Metadata
| Field | Value |
|---|---|
| Display | Get All Skills |
| Category | skill |
| Access | Public |
| Scope | B2Authority |
| Tags | — |
| Aliases | — |
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
| entity_id | entityId | no | — | Target entity ID (default: possessed) |
Returns
Returns a JSON object with the following fields:
| Field | Type | Required | Description |
|---|---|---|---|
skills | array | yes | Skills of the target character |
skills[].id | string | yes | Skill id |
skills[].l10n | string | yes | Localized skill name |
skills[].level | int | yes | Current level |
skills[].max_level | int | yes | Max level |
Usage
await inzoi.cli.execute('skill.get_all', {
entity_id: 0, // optional
});