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
|
# Add sidearm and medkit slots to security belts + webbing, medical webbing respectively
|
||||||
clothing-belt-sidearm = Sidearm
|
clothing-belt-sidearm = Sidearm
|
||||||
clothing-belt-medkit = Medkit
|
clothing-belt-medkit = Medkit
|
||||||
|
# Add radio slot to sec belt + webbing
|
||||||
|
clothing-belt-radio = Radio
|
||||||
|
|
||||||
# Add slots to the daishou
|
# Add slots to the daishou
|
||||||
clothing-belt-katana = Katana
|
clothing-belt-katana = Katana
|
||||||
|
|
|
||||||
|
|
@ -154,7 +154,7 @@
|
||||||
sprite: _DV/Clothing/Belt/securitywebbing.rsi # DeltaV - resprite
|
sprite: _DV/Clothing/Belt/securitywebbing.rsi # DeltaV - resprite
|
||||||
- type: Clothing
|
- type: Clothing
|
||||||
sprite: _DV/Clothing/Belt/securitywebbing.rsi # DeltaV - resprite
|
sprite: _DV/Clothing/Belt/securitywebbing.rsi # DeltaV - resprite
|
||||||
- type: ItemSlots # DeltaV - add sidearm slot
|
- type: ItemSlots # DeltaV - add sidearm and radio slot
|
||||||
slots:
|
slots:
|
||||||
holster:
|
holster:
|
||||||
name: clothing-belt-sidearm
|
name: clothing-belt-sidearm
|
||||||
|
|
@ -162,6 +162,12 @@
|
||||||
tags:
|
tags:
|
||||||
- Sidearm
|
- Sidearm
|
||||||
insertOnInteract: false
|
insertOnInteract: false
|
||||||
|
radio:
|
||||||
|
name: clothing-belt-radio
|
||||||
|
whitelist:
|
||||||
|
tags:
|
||||||
|
- Radio
|
||||||
|
insertOnInteract: false
|
||||||
- type: Storage # DeltaV - Split Inventory
|
- type: Storage # DeltaV - Split Inventory
|
||||||
grid:
|
grid:
|
||||||
- 0,0,2,1
|
- 0,0,2,1
|
||||||
|
|
@ -178,6 +184,7 @@
|
||||||
storagebase: !type:Container
|
storagebase: !type:Container
|
||||||
ents: []
|
ents: []
|
||||||
holster: !type:ContainerSlot {}
|
holster: !type:ContainerSlot {}
|
||||||
|
radio: !type:ContainerSlot {} # DeltaV - add radio holster
|
||||||
- type: Appearance # DeltaV
|
- type: Appearance # DeltaV
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
|
|
|
||||||
|
|
@ -437,7 +437,8 @@
|
||||||
storagebase: !type:Container
|
storagebase: !type:Container
|
||||||
ents: []
|
ents: []
|
||||||
holster: !type:ContainerSlot {}
|
holster: !type:ContainerSlot {}
|
||||||
- type: ItemSlots # DeltaV - add sidearm slot
|
radio: !type:ContainerSlot {}
|
||||||
|
- type: ItemSlots # DeltaV - add sidearm and radio slot
|
||||||
slots:
|
slots:
|
||||||
holster:
|
holster:
|
||||||
name: clothing-belt-sidearm
|
name: clothing-belt-sidearm
|
||||||
|
|
@ -445,4 +446,10 @@
|
||||||
tags:
|
tags:
|
||||||
- Sidearm
|
- Sidearm
|
||||||
insertOnInteract: false
|
insertOnInteract: false
|
||||||
|
radio:
|
||||||
|
name: clothing-belt-radio
|
||||||
|
whitelist:
|
||||||
|
tags:
|
||||||
|
- Radio
|
||||||
|
insertOnInteract: false
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue