Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Corvax drinks #293

Merged
merged 5 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
DrinkFlaskBar: 5
DrinkShaker: 5
CustomDrinkJug: 2 #to allow for custom drinks in the soda/booze dispensers
DrinkCampariBottleFull: 2 # Corvax
DrinkAbsintheBottleFull: 2
DrinkAleBottleFull: 5
DrinkBeerBottleFull: 5
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
- type: entity
parent: DrinkGlass
id: DrinkAlexanderGlass
suffix: alexander
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Alexander
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/alexander.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkBadTouchGlass
suffix: bad touch
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: BadTouch
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/badTouch.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkBoyarskyGlass
suffix: boyarsky
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Boyarsky
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/boyarsky.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkBrambleGlass
suffix: bramble
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Bramble
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/bramble.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkDarkAndStormyGlass
suffix: dark and stormy
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: DarkAndStormy
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/darkAndStormy.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkEspressoMartiniGlass
suffix: espresso martini
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: EspressoMartini
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/espressoMartini.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkMaiTaiGlass
suffix: mai tai
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: MaiTai
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/maiTai.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkMoscowMuleGlass
suffix: moscow mule
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: MoscowMule
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/moscowMule.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkNegroniGlass
suffix: negroni
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Negroni
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/negroni.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkOldFashionedGlass
suffix: old fashioned
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: OldFashioned
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/oldFashioned.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkPalomaGlass
suffix: paloma
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Paloma
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/paloma.rsi
state: icon

- type: entity
parent: DrinkGlass
id: DrinkYorshGlass
suffix: yorsh
components:
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Yorsh
Quantity: 30
- type: Drink
- type: Icon
sprite: Corvax/Objects/Consumable/Drinks/yorsh.rsi
state: icon
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
- type: entity
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
id: DrinkCampariBottleFull
name: campari bottle
description: Tincture based on aromatic herbs and citrus fruits. Non-GMO!
components:
- type: SolutionContainerManager
solutions:
drink:
reagents:
- ReagentId: Campari
Quantity: 100
- type: Sprite
sprite: Corvax/Objects/Consumable/Drinks/campari.rsi
- type: SolutionContainerVisuals
maxFillLevels: 10
fillBaseName: fill-
Ko4ergaPunk marked this conversation as resolved.
Show resolved Hide resolved
- type: Sealable
Loading
Loading