Skip to content

Commit 89aabbf

Browse files
committed
docs: enhance equipment management section with detailed commands and examples
1 parent 3eb3a8d commit 89aabbf

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed

content/docs/characters/manage/equipment.mdx

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,70 @@
22
title: Equipment
33
description: Manage your character's equipment.
44
---
5+
6+
You can manage a character's equipment using the `/character equipment` command.
7+
8+
## Equipping Items
9+
10+
To equip an item in a specific slot for a character, use the command:
11+
`/character equipment set <character> <equipment-slot> <item>`
12+
13+
### Parameters
14+
15+
- `<character>`: The name of the character whose equipment you want to modify
16+
- `<equipment-slot>`: The equipment slot to set the item in (see [Available Equipment Slots](#available-equipment-slots))
17+
- `<item>`: The item to place in the specified equipment slot
18+
19+
### Example [!toc]
20+
21+
To equip a diamond helmet for a character named "Guardian", use:
22+
23+
```
24+
/character equipment set Guardian head minecraft:diamond_helmet
25+
```
26+
27+
## Clearing Equipment
28+
29+
To clear equipment for a character, use the command
30+
`/character equipment clear <character> [<equipment-slot>]`
31+
32+
### Clear a Specific Slot
33+
34+
To clear a specific equipment slot for a character, use the command:
35+
`/character equipment clear <character> <equipment-slot>`
36+
37+
#### Example [!toc]
38+
39+
To clear the chestplate slot for a character named "Warrior":
40+
41+
```
42+
/character equipment clear Warrior chest
43+
```
44+
45+
### Clear All Equipment
46+
47+
To clear all equipment slots for a character, use the command
48+
`/character equipment clear <character>`
49+
50+
#### Example [!toc]
51+
52+
To clear all equipment for a character named "Mage":
53+
54+
```
55+
/character equipment clear Mage
56+
```
57+
58+
## Available Equipment Slots
59+
60+
The following equipment slots can be used with the equipment commands:
61+
62+
| Equipment Slot | Description |
63+
| -------------- | ------------------------------------------------------------- |
64+
| `head` | Helmet slot |
65+
| `chest` | Chestplate slot |
66+
| `legs` | Leggings slot |
67+
| `feet` | Boots slot |
68+
| `hand` | Main hand slot (right hand by default) |
69+
| `off_hand` | Off-hand slot (left hand by default) |
70+
| `body` | Body slot (for entities like happy ghasts, wolves, or horses) |
71+
| `saddle` | Saddle slot (for mounts) |

0 commit comments

Comments
 (0)