- medicine & toxic cabinet items (added to vanilla subs) - updating the positions of items inside a moving container (caused explosions to happen in the wrong position if the explosive inside something like a grenade) - renamed doctors as medical doctors
41 lines
950 B
XML
41 lines
950 B
XML
<Items>
|
|
<Item
|
|
name="Steel Cabinet"
|
|
linkable="true"
|
|
pickdistance ="150">
|
|
|
|
<Sprite texture ="locker.png" depth="0.85"/>
|
|
|
|
<ItemContainer capacity="20" canbeselected="true" hideitems="true">
|
|
<Containable name="smallitem"/>
|
|
</ItemContainer>
|
|
</Item>
|
|
|
|
<Item
|
|
name="Medicine Cabinet"
|
|
linkable="true"
|
|
pickdistance ="150">
|
|
|
|
<Sprite texture ="cabinets.png" depth="0.85" sourcerect="0,0,48,64"/>
|
|
|
|
<ItemContainer capacity="20" canbeselected="true" hideitems="true">
|
|
<Containable name="chem"/>
|
|
<Containable name="medical"/>
|
|
</ItemContainer>
|
|
</Item>
|
|
|
|
<Item
|
|
name="Toxic Cabinet"
|
|
linkable="true"
|
|
pickdistance ="150">
|
|
|
|
<Sprite texture ="cabinets.png" depth="0.85" sourcerect="0,64,48,64"/>
|
|
|
|
<ItemContainer capacity="20" canbeselected="true" hideitems="true">
|
|
<Containable name="chem"/>
|
|
<Containable name="medical"/>
|
|
</ItemContainer>
|
|
</Item>
|
|
</Items>
|
|
|