Several new bartender tools (#27406)
* added bar specs * specs in boozeomat * added jigger in bartender guide * fixed ice bucket * cdn --------- Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
@@ -7,6 +7,9 @@
|
||||
DrinkVacuumFlask: 5
|
||||
DrinkFlaskBar: 5
|
||||
DrinkShaker: 5
|
||||
DrinkJigger: 5
|
||||
DrinkIceBucket: 2
|
||||
BarSpoon: 3
|
||||
CustomDrinkJug: 2 #to allow for custom drinks in the soda/booze dispensers
|
||||
DrinkAbsintheBottleFull: 2
|
||||
DrinkAleBottleFull: 5
|
||||
|
||||
@@ -104,3 +104,63 @@
|
||||
- type: Drink
|
||||
- type: Sprite
|
||||
sprite: Objects/Consumable/Drinks/jar_what.rsi
|
||||
|
||||
- type: entity
|
||||
id: BartenderMixer
|
||||
abstract: true
|
||||
components:
|
||||
- type: DrainableSolution
|
||||
solution: drink
|
||||
- type: Drink
|
||||
- type: DrawableSolution
|
||||
solution: drink
|
||||
- type: RefillableSolution
|
||||
solution: drink
|
||||
- type: SolutionTransfer
|
||||
canChangeTransferAmount: true
|
||||
- type: Spillable
|
||||
solution: drink
|
||||
- type: UserInterface
|
||||
interfaces:
|
||||
enum.TransferAmountUiKey.Key:
|
||||
type: TransferAmountBoundUserInterface
|
||||
|
||||
- type: entity
|
||||
parent: [BaseItem, BartenderMixer]
|
||||
id: DrinkJigger
|
||||
name: jigger
|
||||
description: Like a shaker, but smaller. Used to control the amount of ingredients.
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
drink:
|
||||
maxVol: 20
|
||||
- type: MixableSolution
|
||||
solution: drink
|
||||
- type: FitsInDispenser
|
||||
solution: drink
|
||||
- type: Sprite
|
||||
sprite: Objects/Consumable/Drinks/jigger.rsi
|
||||
state: icon
|
||||
- type: PhysicalComposition
|
||||
materialComposition:
|
||||
Steel: 20
|
||||
|
||||
- type: entity
|
||||
parent: [BaseItem, BartenderMixer]
|
||||
id: DrinkIceBucket
|
||||
name: ice bucket
|
||||
description: A special bucket of refreshy ice. Prohibited use for challenge with the same name!
|
||||
components:
|
||||
- type: SolutionContainerManager
|
||||
solutions:
|
||||
drink:
|
||||
reagents:
|
||||
- ReagentId: Ice
|
||||
Quantity: 200
|
||||
- type: Sprite
|
||||
sprite: Objects/Consumable/Drinks/icebucket.rsi
|
||||
state: icon
|
||||
- type: PhysicalComposition
|
||||
materialComposition:
|
||||
Steel: 75
|
||||
|
||||
@@ -120,3 +120,28 @@
|
||||
- Plastic
|
||||
- Trash
|
||||
- Knife
|
||||
|
||||
- type: entity
|
||||
parent: UtensilBase
|
||||
id: BarSpoon
|
||||
name: bar spoon
|
||||
description: Your personal helper to mix drinks and changes lives.
|
||||
components:
|
||||
- type: Tag
|
||||
tags:
|
||||
- Metal
|
||||
- type: Sprite
|
||||
state: bar_spoon
|
||||
- type: Item
|
||||
heldPrefix: spoon
|
||||
- type: Utensil
|
||||
types:
|
||||
- Spoon
|
||||
- type: MeleeWeapon
|
||||
wideAnimationRotation: 180
|
||||
attackRate: 2
|
||||
damage:
|
||||
types:
|
||||
Blunt: 2
|
||||
- type: Shovel
|
||||
speedModifier: 0.05 # nah
|
||||
|
||||
Reference in New Issue
Block a user