Fix various solution capability issues (syringes, drinks) (#4687)
* Fix syringe message stating you're attempting to draw from yourself when you aren't * Fix various missing capabilities (syringes, beakers, drinks) * And fix mug inject/dispense/etc, too! * Injectors can now refill things, and switch over drinks and cups thereof to be refillable rather than injectable
This commit is contained in:
@@ -9,11 +9,11 @@ injector-volume-label = Volume: [color=white]{$currentVolume}/{$totalVolume}[/co
|
||||
|
||||
injector-component-drawing-text = Now drawing
|
||||
injector-component-injecting-text = Now injecting
|
||||
injector-component-cannot-transfer-message = You aren't able to transfer to {$owner}!
|
||||
injector-component-cannot-draw-message = You aren't able to draw from {$owner}!
|
||||
injector-component-cannot-inject-message = You aren't able to inject to {$owner}!
|
||||
injector-component-cannot-transfer-message = You aren't able to transfer to {$target}!
|
||||
injector-component-cannot-draw-message = You aren't able to draw from {$target}!
|
||||
injector-component-cannot-inject-message = You aren't able to inject to {$target}!
|
||||
injector-component-inject-success-message = You inject {$amount}u into {$target}!
|
||||
injector-component-transfer-success-message = You transfer {$amount}u into {$target}.
|
||||
injector-component-draw-success-message = You draw {$amount}u from {$target}.
|
||||
injector-component-target-already-full-message = {$target} is already full!
|
||||
injector-component-target-is-empty-message = {$target} is empty!
|
||||
injector-component-target-is-empty-message = {$target} is empty!
|
||||
|
||||
@@ -58,6 +58,18 @@
|
||||
damage:
|
||||
types:
|
||||
Blunt: 5
|
||||
- type: FitsInDispenser
|
||||
solution: drink
|
||||
- type: DrawableSolution
|
||||
solution: drink
|
||||
- type: RefillableSolution
|
||||
solution: drink
|
||||
- type: SolutionTransfer
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
|
||||
# Transformable container - normal glass
|
||||
- type: entity
|
||||
@@ -72,15 +84,7 @@
|
||||
solutions:
|
||||
drink:
|
||||
maxVol: 50
|
||||
- type: FitsInDispenser
|
||||
solution: drink
|
||||
- type: SolutionTransfer
|
||||
canChangeTransferAmount: true
|
||||
- type: TransformableContainer
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
- key: enum.TransferAmountUiKey.Key
|
||||
type: TransferAmountBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
parent: DrinkGlassBase
|
||||
|
||||
@@ -9,6 +9,12 @@
|
||||
solutions:
|
||||
drink:
|
||||
maxVol: 10
|
||||
- type: FitsInDispenser
|
||||
solution: drink
|
||||
- type: DrawableSolution
|
||||
solution: drink
|
||||
- type: RefillableSolution
|
||||
solution: drink
|
||||
- type: SolutionTransfer
|
||||
canChangeTransferAmount: true
|
||||
maxTransferAmount: 10
|
||||
|
||||
@@ -29,6 +29,10 @@
|
||||
solution: beaker
|
||||
- type: ExaminableSolution
|
||||
solution: beaker
|
||||
- type: DrawableSolution
|
||||
solution: beaker
|
||||
- type: InjectableSolution
|
||||
solution: beaker
|
||||
- type: SolutionTransfer
|
||||
canChangeTransferAmount: true
|
||||
- type: UserInterface
|
||||
|
||||
Reference in New Issue
Block a user