[Tweak] Janibucket buffs (#15422)

* Improves Janitor trolley significantly by adding bucket slot with sprite overlay, and 300 extra water capacity. Improves Janitor bucket slightly by adding 100 extra water capacity.

* Reduces janitor trolley density by 100 to it's pull a bit faster
This commit is contained in:
EnDecc
2023-04-15 18:46:00 -04:00
committed by GitHub
parent 44bdd008a2
commit 5ed99bf497
3 changed files with 40 additions and 23 deletions

View File

@@ -85,7 +85,7 @@
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
bucket: bucket:
maxVol: 500 maxVol: 600
- type: Spillable - type: Spillable
spillDelay: 3.0 spillDelay: 3.0
- type: DrainableSolution - type: DrainableSolution
@@ -134,10 +134,10 @@
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
bucket: bucket:
maxVol: 500 maxVol: 600
reagents: reagents:
- ReagentId: Water - ReagentId: Water
Quantity: 500 Quantity: 600
- type: entity - type: entity
name: wet floor sign name: wet floor sign
@@ -179,6 +179,7 @@
tags: tags:
- Mop - Mop
- TrashBag - TrashBag
- Bucket
- type: ItemSlots - type: ItemSlots
slots: slots:
mop_slot: mop_slot:
@@ -187,6 +188,13 @@
tags: tags:
- Mop - Mop
insertOnInteract: false # or it conflicts with bucket logic insertOnInteract: false # or it conflicts with bucket logic
priority: 5 # Higher than bucket slot
bucket_slot:
name: Bucket
whitelist:
tags:
- Bucket
insertOnInteract: false # or it also conflicts with bucket logic
priority: 4 # Higher than trash bag slot priority: 4 # Higher than trash bag slot
trashbag_slot: trashbag_slot:
name: Bag name: Bag
@@ -199,7 +207,7 @@
- shape: - shape:
!type:PhysShapeCircle !type:PhysShapeCircle
radius: 0.3 radius: 0.3
density: 350 density: 250
layer: layer:
- MobLayer - MobLayer
mask: mask:
@@ -209,10 +217,10 @@
- type: SolutionContainerManager - type: SolutionContainerManager
solutions: solutions:
bucket: bucket:
maxVol: 500 maxVol: 800
reagents: reagents:
- ReagentId: Water - ReagentId: Water
Quantity: 250 # half-full at roundstart to leave room for puddles Quantity: 600 # 3 quarters full at roundstart to make it more appealing
- type: DrainableSolution - type: DrainableSolution
solution: bucket solution: bucket
- type: RefillableSolution - type: RefillableSolution
@@ -243,22 +251,6 @@
path: /Audio/Effects/metalbreak.ogg path: /Audio/Effects/metalbreak.ogg
- type: ItemMapper - type: ItemMapper
mapLayers: mapLayers:
cart_mop:
whitelist:
tags:
- Mop
cart_garbage:
whitelist:
tags:
- TrashBag
cart_replacer:
whitelist:
components:
- LightReplacer
cart_spray:
whitelist:
tags:
- Spray
cart_sign1: # this is like stack of floor signs cart_sign1: # this is like stack of floor signs
minCount: 1 minCount: 1
whitelist: whitelist:
@@ -279,6 +271,26 @@
whitelist: whitelist:
tags: tags:
- WetFloorSign - WetFloorSign
cart_spray:
whitelist:
tags:
- Spray
cart_garbage:
whitelist:
tags:
- TrashBag
cart_replacer:
whitelist:
components:
- LightReplacer
cart_bucket:
whitelist:
tags:
- Bucket
cart_mop:
whitelist:
tags:
- Mop
sprite: Objects/Specific/Janitorial/janitorial_cart.rsi sprite: Objects/Specific/Janitorial/janitorial_cart.rsi
- type: Appearance - type: Appearance
- type: SolutionContainerVisuals - type: SolutionContainerVisuals
@@ -297,6 +309,7 @@
ents: [] ents: []
mop_slot: !type:ContainerSlot {} mop_slot: !type:ContainerSlot {}
trashbag_slot: !type:ContainerSlot {} trashbag_slot: !type:ContainerSlot {}
bucket_slot: !type:ContainerSlot {}
- type: entity - type: entity
id: FloorDrain id: FloorDrain

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -19,6 +19,10 @@
"name": "cart_mop", "name": "cart_mop",
"directions": 4 "directions": 4
}, },
{
"name": "cart_bucket",
"directions": 4
},
{ {
"name": "cart_replacer", "name": "cart_replacer",
"directions": 4 "directions": 4
@@ -122,4 +126,4 @@
] ]
} }
] ]
} }