Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<!-- Item is carried (default) -->
<usage mode="CARRIED" />

<!-- Item wants to be placed in a specific slot (and fills it totally) -->
<usage mode="EMBEDDED" slot="UNDER"/>

<!-- Item wants to be placed in a slot and occupies capacity -->
<usage mode="EMBEDDED" slot="HEADWARE_IMPLANT" value="2"/>

<!-- Item is implanted an consume essence. The essence cost depends on the rating -->
<usage mode="IMPLANTED" value="$RATING*0.1"/>

You can assign more than one <usage> element to an item.

Example

The “soundlink” is available as an accessory (in a CYBEREAR_IMPLANT slot) with a size of 2 - or as an implant with an essence cost of 0.1. The price and availability is identical in both cases.

Code Block
languagexml
<item avail="2" price="1000" id="soundlink" type="CYBERWARE" subtype="CYBER_EARWARE">
  <usage mode="EMBEDDED" slot="CYBEREAR_IMPLANT" value="1"/>
  <usage mode="IMPLANTED" value="0.1"/>
</item>