Skip to content

Commit

Permalink
Update custom drinks (#993)
Browse files Browse the repository at this point in the history
* fix dulleaveanee icon weirdness

hmm yes 13x17 sprite

* First batch

* fixes

* imsmart

* elp

Some DV drink sprites are way too different from the base game sprites

* oops

* soju and sake

* fix flavor

* small fix to kvass
  • Loading branch information
FluffiestFloof authored Apr 4, 2024
1 parent c17c74c commit be0d844
Show file tree
Hide file tree
Showing 147 changed files with 595 additions and 188 deletions.
2 changes: 1 addition & 1 deletion Resources/Locale/en-US/deltav/flavors/flavor-profiles.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ flavor-complex-lemondrop = refreshingly tart
flavor-complex-greengrass = like a holiday in the sun
flavor-complex-daiquiri = fashionable
flavor-complex-arsonistsbrew = like ash and flame
flavor-complex-dulleavene = ominous
flavor-complex-healthcodeviolation = ominous
flavor-complex-pumpkin = like pumpkin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkHealthViolationGlass
name: health code violation
suffix: health code violation
description: Allegedly it's a cocktail. The warning cone motif seems apt.
components:
- type: SolutionContainerManager
Expand All @@ -11,13 +11,14 @@
reagents:
- ReagentId: HealthViolation
Quantity: 30
- type: Sprite
sprite: DeltaV/Objects/Consumable/Drinks/dulleavene.rsi
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/healthcodeviolation.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkGunmetalGlass
name: gunmetal glass
suffix: gunmetal
description: A cloudy mix of rum, cream, and... is that welding fuel? Probably tasty.
components:
- type: SolutionContainerManager
Expand All @@ -27,13 +28,14 @@
reagents:
- ReagentId: Gunmetal
Quantity: 30
- type: Sprite
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/gunmetal.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkLemonDropGlass
name: lemon drop
suffix: lemon drop
description: A martini glass filled with a translucent mix of refreshing lemony goodness.
components:
- type: SolutionContainerManager
Expand All @@ -43,13 +45,14 @@
reagents:
- ReagentId: LemonDrop
Quantity: 30
- type: Sprite
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/lemondrop.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkGreenGrassGlass
name: green grass
suffix: green grass
description: An odd green cocktail, topped with oranges, ice, and a plastic straw. Curious.
components:
- type: SolutionContainerManager
Expand All @@ -59,13 +62,14 @@
reagents:
- ReagentId: GreenGrass
Quantity: 30
- type: Sprite
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/greengrass.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkDaiquiriGlass
name: classic daiquiri
suffix: classic daiquiri
description: Rum, lime, and simple syrup. Such class, such refinement.
components:
- type: SolutionContainerManager
Expand All @@ -75,13 +79,14 @@
reagents:
- ReagentId: Daiquiri
Quantity: 30
- type: Sprite
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/daiquiri.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkArsonistsBrewGlass
name: arsonist's brew
suffix: arsonist's brew
description: It's probably not concerning that it's glowing faintly. Or bubbling. Or smoking. No, not at all.
components:
- type: SolutionContainerManager
Expand All @@ -91,13 +96,14 @@
reagents:
- ReagentId: ArsonistsBrew
Quantity: 30
- type: Sprite
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/arsonist.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkKvassGlass
name: kvass glass
suffix: kvass
description: A cool refreshing drink with a taste of socialism.
components:
- type: SolutionContainerManager
Expand All @@ -107,13 +113,14 @@
reagents:
- ReagentId: Kvass
Quantity: 30
- type: Sprite
sprite: Objects/Consumable/Drinks/kvass.rsi
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/kvass.rsi
state: icon

- type: entity
parent: DrinkGlassBase
parent: DrinkGlass
id: DrinkMothamphetamineGlass
name: mothamphetamine
suffix: mothamphetamine
description: A strangely... Fuzzy drink. It has a chaotic aura.
components:
- type: SolutionContainerManager
Expand All @@ -123,5 +130,6 @@
reagents:
- ReagentId: Mothamphetamine
Quantity: 30
- type: Sprite
- type: Icon
sprite: DeltaV/Objects/Consumable/Drinks/mothamphetamine.rsi
state: icon
4 changes: 2 additions & 2 deletions Resources/Prototypes/DeltaV/Flavors/flavors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@

#Delta V
- type: flavor
id: dulleavene
id: healthcodeviolation
flavorType: Complex
description: flavor-complex-dulleavene
description: flavor-complex-healthcodeviolation

- type: flavor
id: gunmetal
Expand Down
44 changes: 33 additions & 11 deletions Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
parent: BaseDrink
desc: reagent-desc-healthviolation
physicalDesc: reagent-physical-desc-strong-smelling
flavor: dulleavene
flavor: healthcodeviolation
color: "#ff7f00"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/dulleavene.rsi
state: icon
sprite: DeltaV/Objects/Consumable/Drinks/healthcodeviolation.rsi
state: icon_empty
metamorphicMaxFillLevels: 5
metamorphicFillBaseName: fill-
metamorphicChangeColor: false
metabolisms:
Drink:
effects:
Expand Down Expand Up @@ -41,7 +44,10 @@
color: "#994422"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/gunmetal.rsi
state: icon
state: icon_empty
metamorphicMaxFillLevels: 5
metamorphicFillBaseName: fill-
metamorphicChangeColor: false
metabolisms:
Drink:
effects:
Expand All @@ -67,7 +73,9 @@
color: "#fff789"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/lemondrop.rsi
state: icon
state: icon_empty
metamorphicMaxFillLevels: 3
metamorphicFillBaseName: fill-
metabolisms:
Drink:
effects:
Expand All @@ -87,7 +95,9 @@
color: "#66aa55"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/greengrass.rsi
state: icon
state: icon_empty
metamorphicMaxFillLevels: 5
metamorphicFillBaseName: fill-
metabolisms:
Drink:
effects:
Expand All @@ -107,7 +117,10 @@
color: "#ddffdd"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/daiquiri.rsi
state: icon
state: icon_empty
metamorphicMaxFillLevels: 3
metamorphicFillBaseName: fill-
metamorphicChangeColor: false
metabolisms:
Drink:
effects:
Expand All @@ -127,7 +140,10 @@
color: "#fff789"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/arsonist.rsi
state: icon
state: icon_empty
metamorphicMaxFillLevels: 4
metamorphicFillBaseName: fill-
metamorphicChangeColor: false
metabolisms:
Drink:
effects:
Expand Down Expand Up @@ -158,8 +174,11 @@
flavor: bread
color: "#381600"
metamorphicSprite:
sprite: Objects/Consumable/Drinks/kvass.rsi
state: icon
sprite: DeltaV/Objects/Consumable/Drinks/kvass.rsi
state: icon_empty
metamorphicMaxFillLevels: 4
metamorphicFillBaseName: fill-
metamorphicChangeColor: false

- type: reagent
id: Mothamphetamine
Expand All @@ -171,7 +190,10 @@
color: "#2fa1ef"
metamorphicSprite:
sprite: DeltaV/Objects/Consumable/Drinks/mothamphetamine.rsi
state: icon
state: icon_empty
metamorphicMaxFillLevels: 4
metamorphicFillBaseName: fill-
metamorphicChangeColor: false
metabolisms:
Drink:
effects:
Expand Down
Loading

0 comments on commit be0d844

Please sign in to comment.