Skip to content

StrSheet_Item

VersionStatus
v92Full
v90-
v86-

StrSheet_Item.xml stores player-facing strings: display names and tooltip text.

This entity supports two authoring workflows:

  1. Inline on items — define strings within an items.create operation using the strings: block
  2. Standalone operations — define strings directly in the itemStrings section

Entity: itemStrings Operations: create, update, delete, upsert

Inline block: strings: on item operations


spec:
version: "1.0"
itemStrings:
create:
- id: 99001
name: "Iron Sword"
toolTip: "A basic training weapon."
spec:
version: "1.0"
itemStrings:
update:
- id: 99001
changes:
name: "Tempered Iron Sword"
toolTip: "A well-crafted blade."
spec:
version: "1.0"
itemStrings:
delete:
- 99001
spec:
version: "1.0"
items:
create:
- id: 99001
name: iron_sword
level: 60
combatItemType: EquipWeapon
strings:
name: "Iron Sword"
toolTip: "A basic training weapon."

PropertyTypeSinceDescription
idintv92Item ID this string entry belongs to
namestringv92Display name shown to players
toolTipstringv92Tooltip text shown on hover

  • Internal vs display name: The item’s name property in ItemTemplate.xml is an internal identifier. Player-facing display text belongs in the strings block.
  • Inline auto-linking: Inline strings: blocks automatically create a StrSheet_Item.xml entry with the same ID as the parent item.