radio holster (#5587)
* adds radio holster to sec belt and webbing * add containercontainer slot for radio in each * fix inconsistent insertion behavior ( godo) * add comment
This commit is contained in:
parent
7c10e90369
commit
120455283a
|
|
@ -1,6 +1,8 @@
|
|||
# Add sidearm and medkit slots to security belts + webbing, medical webbing respectively
|
||||
clothing-belt-sidearm = Sidearm
|
||||
clothing-belt-medkit = Medkit
|
||||
# Add radio slot to sec belt + webbing
|
||||
clothing-belt-radio = Radio
|
||||
|
||||
# Add slots to the daishou
|
||||
clothing-belt-katana = Katana
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@
|
|||
sprite: _DV/Clothing/Belt/securitywebbing.rsi # DeltaV - resprite
|
||||
- type: Clothing
|
||||
sprite: _DV/Clothing/Belt/securitywebbing.rsi # DeltaV - resprite
|
||||
- type: ItemSlots # DeltaV - add sidearm slot
|
||||
- type: ItemSlots # DeltaV - add sidearm and radio slot
|
||||
slots:
|
||||
holster:
|
||||
name: clothing-belt-sidearm
|
||||
|
|
@ -162,6 +162,12 @@
|
|||
tags:
|
||||
- Sidearm
|
||||
insertOnInteract: false
|
||||
radio:
|
||||
name: clothing-belt-radio
|
||||
whitelist:
|
||||
tags:
|
||||
- Radio
|
||||
insertOnInteract: false
|
||||
- type: Storage # DeltaV - Split Inventory
|
||||
grid:
|
||||
- 0,0,2,1
|
||||
|
|
@ -178,6 +184,7 @@
|
|||
storagebase: !type:Container
|
||||
ents: []
|
||||
holster: !type:ContainerSlot {}
|
||||
radio: !type:ContainerSlot {} # DeltaV - add radio holster
|
||||
- type: Appearance # DeltaV
|
||||
|
||||
- type: entity
|
||||
|
|
|
|||
|
|
@ -437,7 +437,8 @@
|
|||
storagebase: !type:Container
|
||||
ents: []
|
||||
holster: !type:ContainerSlot {}
|
||||
- type: ItemSlots # DeltaV - add sidearm slot
|
||||
radio: !type:ContainerSlot {}
|
||||
- type: ItemSlots # DeltaV - add sidearm and radio slot
|
||||
slots:
|
||||
holster:
|
||||
name: clothing-belt-sidearm
|
||||
|
|
@ -445,4 +446,10 @@
|
|||
tags:
|
||||
- Sidearm
|
||||
insertOnInteract: false
|
||||
radio:
|
||||
name: clothing-belt-radio
|
||||
whitelist:
|
||||
tags:
|
||||
- Radio
|
||||
insertOnInteract: false
|
||||
- type: Appearance
|
||||
|
|
|
|||
Loading…
Reference in New Issue