spawn_equipped_character
Create RPG characters with pre-equipped gear in one API call to reduce multiple operations into a single efficient request.
Instructions
Create a character with equipment from presets in a single call.
REPLACES: create_character + N×(create_item + give_item + equip_item) (8-16 calls → 1 call) TOKEN SAVINGS: ~85%
Equipment can be preset names or full item specs.
Example - Dwarf Fighter: { "name": "Gimli", "race": "Dwarf", "characterClass": "fighter", "level": 5, "stats": { "str": 18, "dex": 12, "con": 16, "int": 10, "wis": 12, "cha": 8 }, "equipment": ["battleaxe", "chain_mail", "shield"], "partyId": "fellowship-123" }
Example - From creature template: { "template": "bandit_captain", "name": "Red Raven", "equipment": ["rapier", "studded_leather"], "characterType": "npc" }
Available equipment presets: All PHB weapons (longsword, shortbow, greataxe...), armor (chain_mail, plate, leather...), and gear (rope, torch, healers_kit...).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| template | No | Creature template to use as base stats | |
| name | Yes | Character name | |
| race | No | Human | |
| characterClass | No | fighter | |
| level | No | ||
| stats | No | ||
| hp | No | ||
| maxHp | No | ||
| ac | No | ||
| equipment | No | Equipment presets to create and equip | |
| characterType | No | pc | |
| partyId | No | Party to add character to | |
| partyRole | No | member | |
| sessionId | No |