Add open/closed/fill states and sprites (#24600)
This adds visual differences to the sprites of many of the game's drinks when they are opened, as well as visual fill levels for most see-through drink containers. Condiment packets are visibly torn open in the corner when opened. Glue, lube, and condiment bottles are visibly opened too. I also noticed that the soda bottles were all completely opaque, so I fixed that while I was at it. Oh, and I updated the wine bottle sprite to say 14 instead of 13, 'cause yeah. As a result of the way fill levels take on the color of the contained liquid, many of the drinks have changed slightly in appearance. This can be adjusted in the future by modifying the colors of the reagents, but seems outside the scope of this already large PR. This also means that if you refill the bottles with a different liquid, they'll take on the new color appropriately.
@@ -36,7 +36,23 @@
|
|||||||
solution: drink
|
solution: drink
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
id: DrinkCartonVisualsOpenable
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Appearance
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon"}
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkJuiceLimeCarton
|
id: DrinkJuiceLimeCarton
|
||||||
name: lime juice
|
name: lime juice
|
||||||
description: Sweet-sour goodness.
|
description: Sweet-sour goodness.
|
||||||
@@ -51,7 +67,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/limejuice.rsi
|
sprite: Objects/Consumable/Drinks/limejuice.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkJuiceOrangeCarton
|
id: DrinkJuiceOrangeCarton
|
||||||
name: orange juice
|
name: orange juice
|
||||||
description: Full of vitamins and deliciousness!
|
description: Full of vitamins and deliciousness!
|
||||||
@@ -66,7 +82,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/orangejuice.rsi
|
sprite: Objects/Consumable/Drinks/orangejuice.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkJuiceTomatoCarton
|
id: DrinkJuiceTomatoCarton
|
||||||
name: tomato juice
|
name: tomato juice
|
||||||
description: Well, at least it LOOKS like tomato juice. You can't tell with all that redness.
|
description: Well, at least it LOOKS like tomato juice. You can't tell with all that redness.
|
||||||
@@ -81,7 +97,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/tomatojuice.rsi
|
sprite: Objects/Consumable/Drinks/tomatojuice.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkCreamCarton
|
id: DrinkCreamCarton
|
||||||
name: milk cream
|
name: milk cream
|
||||||
description: It's cream. Made from milk. What else did you think you'd find in there?
|
description: It's cream. Made from milk. What else did you think you'd find in there?
|
||||||
@@ -96,7 +112,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/cream.rsi
|
sprite: Objects/Consumable/Drinks/cream.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkMilkCarton
|
id: DrinkMilkCarton
|
||||||
name: milk
|
name: milk
|
||||||
description: An opaque white liquid produced by the mammary glands of mammals.
|
description: An opaque white liquid produced by the mammary glands of mammals.
|
||||||
@@ -112,7 +128,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/milk.rsi
|
sprite: Objects/Consumable/Drinks/milk.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkSoyMilkCarton
|
id: DrinkSoyMilkCarton
|
||||||
name: soy milk
|
name: soy milk
|
||||||
description: White and nutritious soy goodness!
|
description: White and nutritious soy goodness!
|
||||||
@@ -128,7 +144,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/soymilk.rsi
|
sprite: Objects/Consumable/Drinks/soymilk.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkCartonBaseFull
|
parent: [DrinkCartonVisualsOpenable, DrinkCartonBaseFull]
|
||||||
id: DrinkOatMilkCarton
|
id: DrinkOatMilkCarton
|
||||||
name: oat milk
|
name: oat milk
|
||||||
description: It's oat milk. Tan and nutritious goodness!
|
description: It's oat milk. Tan and nutritious goodness!
|
||||||
|
|||||||
@@ -79,7 +79,46 @@
|
|||||||
Glass: 100
|
Glass: 100
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
id: DrinkBottleVisualsOpenable
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Appearance
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon"}
|
||||||
|
- type: Sprite
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
id: DrinkBottleVisualsAll
|
||||||
|
abstract: true
|
||||||
|
components:
|
||||||
|
- type: Appearance
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon_empty"}
|
||||||
|
- type: Sprite
|
||||||
|
sprite: Objects/Consumable/Drinks/alco-bottle.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
- state: fill-1
|
||||||
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
|
visible: false
|
||||||
|
- type: SolutionContainerVisuals
|
||||||
|
maxFillLevels: 5
|
||||||
|
fillBaseName: fill-
|
||||||
|
|
||||||
|
- type: entity
|
||||||
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkAbsintheBottleFull
|
id: DrinkAbsintheBottleFull
|
||||||
name: Jailbreaker Verte
|
name: Jailbreaker Verte
|
||||||
description: One sip of this and you just know you're gonna have a good time.
|
description: One sip of this and you just know you're gonna have a good time.
|
||||||
@@ -94,7 +133,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/absinthebottle.rsi
|
sprite: Objects/Consumable/Drinks/absinthebottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkBlueCuracaoBottleFull
|
id: DrinkBlueCuracaoBottleFull
|
||||||
name: Miss Blue Curacao
|
name: Miss Blue Curacao
|
||||||
description: A fruity, exceptionally azure drink. Does not allow the imbiber to use the fifth magic.
|
description: A fruity, exceptionally azure drink. Does not allow the imbiber to use the fifth magic.
|
||||||
@@ -106,10 +145,19 @@
|
|||||||
- ReagentId: BlueCuracao
|
- ReagentId: BlueCuracao
|
||||||
Quantity: 100
|
Quantity: 100
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Consumable/Drinks/alco-blue.rsi
|
sprite: Objects/Consumable/Drinks/alco-bottle.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon_blue
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
- state: fill-1
|
||||||
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
|
visible: false
|
||||||
|
- type: SolutionContainerVisuals
|
||||||
|
maxFillLevels: 6
|
||||||
|
fillBaseName: fill-
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkBottleOfNothingFull
|
id: DrinkBottleOfNothingFull
|
||||||
name: bottle of nothing
|
name: bottle of nothing
|
||||||
description: A bottle filled with nothing.
|
description: A bottle filled with nothing.
|
||||||
@@ -124,7 +172,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/bottleofnothing.rsi
|
sprite: Objects/Consumable/Drinks/bottleofnothing.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkChampagneBottleFull
|
id: DrinkChampagneBottleFull
|
||||||
name: champagne bottle
|
name: champagne bottle
|
||||||
description: Only people devoid of imagination can't find an excuse for champagne.
|
description: Only people devoid of imagination can't find an excuse for champagne.
|
||||||
@@ -139,7 +187,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/champagnebottle.rsi
|
sprite: Objects/Consumable/Drinks/champagnebottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkCognacBottleFull
|
id: DrinkCognacBottleFull
|
||||||
name: cognac bottle
|
name: cognac bottle
|
||||||
description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time.
|
description: A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time.
|
||||||
@@ -156,7 +204,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/cognacbottle.rsi
|
sprite: Objects/Consumable/Drinks/cognacbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkColaBottleFull
|
id: DrinkColaBottleFull
|
||||||
name: space cola bottle
|
name: space cola bottle
|
||||||
description: Cola. In space.
|
description: Cola. In space.
|
||||||
@@ -172,9 +220,8 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Consumable/Drinks/colabottle.rsi
|
sprite: Objects/Consumable/Drinks/colabottle.rsi
|
||||||
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkGrenadineBottleFull
|
id: DrinkGrenadineBottleFull
|
||||||
name: briar rose grenadine syrup bottle
|
name: briar rose grenadine syrup bottle
|
||||||
description: Sweet and tangy, a bar syrup used to add color or flavor to drinks.
|
description: Sweet and tangy, a bar syrup used to add color or flavor to drinks.
|
||||||
@@ -190,9 +237,11 @@
|
|||||||
opened: true
|
opened: true
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Consumable/Drinks/grenadinebottle.rsi
|
sprite: Objects/Consumable/Drinks/grenadinebottle.rsi
|
||||||
|
- type: SolutionContainerVisuals
|
||||||
|
maxFillLevels: 6
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkGinBottleFull
|
id: DrinkGinBottleFull
|
||||||
name: Griffeater gin
|
name: Griffeater gin
|
||||||
description: A bottle of high quality gin, produced in the New London Space Station.
|
description: A bottle of high quality gin, produced in the New London Space Station.
|
||||||
@@ -209,7 +258,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/ginbottle.rsi
|
sprite: Objects/Consumable/Drinks/ginbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkGildlagerBottleFull
|
id: DrinkGildlagerBottleFull
|
||||||
name: gildlager bottle
|
name: gildlager bottle
|
||||||
description: 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break.
|
description: 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break.
|
||||||
@@ -224,7 +273,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/gildlagerbottle.rsi
|
sprite: Objects/Consumable/Drinks/gildlagerbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkCoffeeLiqueurBottleFull
|
id: DrinkCoffeeLiqueurBottleFull
|
||||||
name: coffee liqueur bottle
|
name: coffee liqueur bottle
|
||||||
description: The great taste of coffee with none of the benifits.
|
description: The great taste of coffee with none of the benifits.
|
||||||
@@ -241,7 +290,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/coffeeliqueurbottle.rsi
|
sprite: Objects/Consumable/Drinks/coffeeliqueurbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkMelonLiquorBottleFull
|
id: DrinkMelonLiquorBottleFull
|
||||||
name: emeraldine melon liquor
|
name: emeraldine melon liquor
|
||||||
description: A bottle of 46 proof Emeraldine Melon Liquor. Sweet and light.
|
description: A bottle of 46 proof Emeraldine Melon Liquor. Sweet and light.
|
||||||
@@ -253,10 +302,19 @@
|
|||||||
- ReagentId: MelonLiquor
|
- ReagentId: MelonLiquor
|
||||||
Quantity: 100
|
Quantity: 100
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Consumable/Drinks/alco-green.rsi
|
sprite: Objects/Consumable/Drinks/alco-bottle.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon_green
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
- state: fill-1
|
||||||
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
|
visible: false
|
||||||
|
- type: SolutionContainerVisuals
|
||||||
|
maxFillLevels: 6
|
||||||
|
fillBaseName: fill-
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkPatronBottleFull
|
id: DrinkPatronBottleFull
|
||||||
name: wrapp artiste patron bottle
|
name: wrapp artiste patron bottle
|
||||||
description: Silver laced tequilla, served in space night clubs across the galaxy.
|
description: Silver laced tequilla, served in space night clubs across the galaxy.
|
||||||
@@ -271,7 +329,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/patronbottle.rsi
|
sprite: Objects/Consumable/Drinks/patronbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkPoisonWinebottleFull
|
id: DrinkPoisonWinebottleFull
|
||||||
name: warlock's velvet bottle
|
name: warlock's velvet bottle
|
||||||
description: What a delightful packaging for a surely high quality wine! The vintage must be amazing!
|
description: What a delightful packaging for a surely high quality wine! The vintage must be amazing!
|
||||||
@@ -286,7 +344,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/pwinebottle.rsi
|
sprite: Objects/Consumable/Drinks/pwinebottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkRumBottleFull
|
id: DrinkRumBottleFull
|
||||||
name: captain pete's Cuban spiced rum
|
name: captain pete's Cuban spiced rum
|
||||||
description: This isn't just rum, oh no. It's practically GRIFF in a bottle.
|
description: This isn't just rum, oh no. It's practically GRIFF in a bottle.
|
||||||
@@ -303,7 +361,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/rumbottle.rsi
|
sprite: Objects/Consumable/Drinks/rumbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkSpaceMountainWindBottleFull
|
id: DrinkSpaceMountainWindBottleFull
|
||||||
name: space mountain wind bottle
|
name: space mountain wind bottle
|
||||||
description: Blows right through you like a space wind.
|
description: Blows right through you like a space wind.
|
||||||
@@ -321,7 +379,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/space_mountain_wind_bottle.rsi
|
sprite: Objects/Consumable/Drinks/space_mountain_wind_bottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkSpaceUpBottleFull
|
id: DrinkSpaceUpBottleFull
|
||||||
name: space-up bottle
|
name: space-up bottle
|
||||||
description: Tastes like a hull breach in your mouth.
|
description: Tastes like a hull breach in your mouth.
|
||||||
@@ -339,7 +397,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/space-up_bottle.rsi
|
sprite: Objects/Consumable/Drinks/space-up_bottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkTequilaBottleFull
|
id: DrinkTequilaBottleFull
|
||||||
name: caccavo guaranteed quality tequila bottle
|
name: caccavo guaranteed quality tequila bottle
|
||||||
description: Made from premium petroleum distillates, pure thalidomide and other fine quality ingredients!
|
description: Made from premium petroleum distillates, pure thalidomide and other fine quality ingredients!
|
||||||
@@ -356,7 +414,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/tequillabottle.rsi
|
sprite: Objects/Consumable/Drinks/tequillabottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkVermouthBottleFull
|
id: DrinkVermouthBottleFull
|
||||||
name: goldeneye vermouth bottle
|
name: goldeneye vermouth bottle
|
||||||
description: Sweet, sweet dryness!
|
description: Sweet, sweet dryness!
|
||||||
@@ -373,7 +431,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/vermouthbottle.rsi
|
sprite: Objects/Consumable/Drinks/vermouthbottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkVodkaBottleFull
|
id: DrinkVodkaBottleFull
|
||||||
name: vodka bottle
|
name: vodka bottle
|
||||||
description: Aah, vodka. Prime choice of drink AND fuel by Russians worldwide.
|
description: Aah, vodka. Prime choice of drink AND fuel by Russians worldwide.
|
||||||
@@ -390,7 +448,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/vodkabottle.rsi
|
sprite: Objects/Consumable/Drinks/vodkabottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkWhiskeyBottleFull
|
id: DrinkWhiskeyBottleFull
|
||||||
name: uncle git's special reserve
|
name: uncle git's special reserve
|
||||||
description: A premium single-malt whiskey, gently matured inside the tunnels of a nuclear shelter. TUNNEL WHISKEY RULES.
|
description: A premium single-malt whiskey, gently matured inside the tunnels of a nuclear shelter. TUNNEL WHISKEY RULES.
|
||||||
@@ -407,7 +465,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/whiskeybottle.rsi
|
sprite: Objects/Consumable/Drinks/whiskeybottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkWineBottleFull
|
id: DrinkWineBottleFull
|
||||||
name: doublebearded bearded special wine bottle
|
name: doublebearded bearded special wine bottle
|
||||||
description: A faint aura of unease and asspainery surrounds the bottle.
|
description: A faint aura of unease and asspainery surrounds the bottle.
|
||||||
@@ -426,7 +484,7 @@
|
|||||||
# Small Bottles
|
# Small Bottles
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkBeerBottleFull
|
id: DrinkBeerBottleFull
|
||||||
name: beer # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e
|
name: beer # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e
|
||||||
description: An alcoholic beverage made from malted grains, hops, yeast, and water.
|
description: An alcoholic beverage made from malted grains, hops, yeast, and water.
|
||||||
@@ -444,7 +502,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/beer.rsi
|
sprite: Objects/Consumable/Drinks/beer.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottleGlassBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottleGlassBaseFull]
|
||||||
id: DrinkBeerGrowler # Needs to be renamed DrinkBeerBottleFull
|
id: DrinkBeerGrowler # Needs to be renamed DrinkBeerBottleFull
|
||||||
name: Beer Growler # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e
|
name: Beer Growler # beer it is. coffee. beer? coff-ee? be-er? c-o... b-e
|
||||||
description: An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle.
|
description: An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle.
|
||||||
@@ -463,7 +521,7 @@
|
|||||||
|
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkAleBottleFull
|
id: DrinkAleBottleFull
|
||||||
name: Magm-Ale
|
name: Magm-Ale
|
||||||
description: A true dorf's drink of choice.
|
description: A true dorf's drink of choice.
|
||||||
@@ -482,7 +540,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/alebottle.rsi
|
sprite: Objects/Consumable/Drinks/alebottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsAll, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkAleBottleFullGrowler
|
id: DrinkAleBottleFullGrowler
|
||||||
name: Magm-Ale Growler
|
name: Magm-Ale Growler
|
||||||
description: A true dorf's drink of choice. XL growler bottle.
|
description: A true dorf's drink of choice. XL growler bottle.
|
||||||
@@ -500,7 +558,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/alebottle.rsi
|
sprite: Objects/Consumable/Drinks/alebottle.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkWaterBottleFull
|
id: DrinkWaterBottleFull
|
||||||
name: water bottle
|
name: water bottle
|
||||||
description: Simple clean water of unknown origin. You think that maybe you dont want to know it.
|
description: Simple clean water of unknown origin. You think that maybe you dont want to know it.
|
||||||
@@ -519,6 +577,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/waterbottle.rsi
|
sprite: Objects/Consumable/Drinks/waterbottle.rsi
|
||||||
layers:
|
layers:
|
||||||
- state: icon
|
- state: icon
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: icon-1
|
- state: icon-1
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
visible: false
|
visible: false
|
||||||
@@ -564,7 +623,7 @@
|
|||||||
# Cartons, TODO: this needs to be moved elsewhere eventually, since cartons shouldnt smash into glass shards
|
# Cartons, TODO: this needs to be moved elsewhere eventually, since cartons shouldnt smash into glass shards
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkJuiceLimeCartonXL
|
id: DrinkJuiceLimeCartonXL
|
||||||
name: lime juice XL
|
name: lime juice XL
|
||||||
description: Sweet-sour goodness.
|
description: Sweet-sour goodness.
|
||||||
@@ -583,7 +642,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/limejuice.rsi
|
sprite: Objects/Consumable/Drinks/limejuice.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkJuiceOrangeCartonXL
|
id: DrinkJuiceOrangeCartonXL
|
||||||
name: orange juice XL
|
name: orange juice XL
|
||||||
description: Full of vitamins and deliciousness!
|
description: Full of vitamins and deliciousness!
|
||||||
@@ -602,7 +661,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/orangejuice.rsi
|
sprite: Objects/Consumable/Drinks/orangejuice.rsi
|
||||||
|
|
||||||
- type: entity
|
- type: entity
|
||||||
parent: DrinkBottlePlasticBaseFull
|
parent: [DrinkBottleVisualsOpenable, DrinkBottlePlasticBaseFull]
|
||||||
id: DrinkCreamCartonXL
|
id: DrinkCreamCartonXL
|
||||||
name: Milk Cream XL
|
name: Milk Cream XL
|
||||||
description: It's cream. Made from milk. What else did you think you'd find in there?
|
description: It's cream. Made from milk. What else did you think you'd find in there?
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/glue-tube.rsi
|
sprite: Objects/Consumable/Drinks/glue-tube.rsi
|
||||||
layers:
|
layers:
|
||||||
- state: icon
|
- state: icon
|
||||||
map: [ "enum.SolutionContainerLayers.Base" ]
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: fill1
|
- state: fill1
|
||||||
map: [ "enum.SolutionContainerLayers.Fill" ]
|
map: [ "enum.SolutionContainerLayers.Fill" ]
|
||||||
visible: false
|
visible: false
|
||||||
@@ -29,6 +29,12 @@
|
|||||||
- type: SolutionContainerVisuals
|
- type: SolutionContainerVisuals
|
||||||
maxFillLevels: 6
|
maxFillLevels: 6
|
||||||
fillBaseName: fill
|
fillBaseName: fill
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon"}
|
||||||
- type: Tag
|
- type: Tag
|
||||||
tags:
|
tags:
|
||||||
- DrinkSpaceGlue
|
- DrinkSpaceGlue
|
||||||
@@ -48,7 +54,7 @@
|
|||||||
sprite: Objects/Consumable/Drinks/lube-tube.rsi
|
sprite: Objects/Consumable/Drinks/lube-tube.rsi
|
||||||
layers:
|
layers:
|
||||||
- state: icon
|
- state: icon
|
||||||
map: [ "enum.SolutionContainerLayers.Base" ]
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: fill1
|
- state: fill1
|
||||||
map: [ "enum.SolutionContainerLayers.Fill" ]
|
map: [ "enum.SolutionContainerLayers.Fill" ]
|
||||||
visible: false
|
visible: false
|
||||||
@@ -65,6 +71,12 @@
|
|||||||
- type: SolutionContainerVisuals
|
- type: SolutionContainerVisuals
|
||||||
maxFillLevels: 6
|
maxFillLevels: 6
|
||||||
fillBaseName: fill
|
fillBaseName: fill
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon"}
|
||||||
- type: Lube
|
- type: Lube
|
||||||
- type: TrashOnSolutionEmpty
|
- type: TrashOnSolutionEmpty
|
||||||
solution: drink
|
solution: drink
|
||||||
@@ -134,5 +146,21 @@
|
|||||||
- type: RandomFillSolution
|
- type: RandomFillSolution
|
||||||
solution: drink
|
solution: drink
|
||||||
weightedRandomId: RandomFillMopwata
|
weightedRandomId: RandomFillMopwata
|
||||||
|
- type: Appearance
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon_empty"}
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Consumable/Drinks/mopwata.rsi
|
sprite: Objects/Consumable/Drinks/mopwata.rsi
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
- state: fill-1
|
||||||
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
|
visible: false
|
||||||
|
- type: SolutionContainerVisuals
|
||||||
|
maxFillLevels: 5
|
||||||
|
fillBaseName: fill-
|
||||||
|
|||||||
@@ -49,7 +49,19 @@
|
|||||||
- type: SolutionTransfer
|
- type: SolutionTransfer
|
||||||
maxTransferAmount: 10
|
maxTransferAmount: 10
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
state: packet-empty
|
layers:
|
||||||
|
- state: packet-trans-2
|
||||||
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
|
visible: true
|
||||||
|
- state: packet-layer
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
- state: packet-label
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "packet-layer-open"}
|
||||||
|
False: {state: "packet-layer"}
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-empty
|
state: packet-empty
|
||||||
- type: PhysicalComposition
|
- type: PhysicalComposition
|
||||||
@@ -77,7 +89,9 @@
|
|||||||
- state: packet-trans-2
|
- state: packet-trans-2
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
visible: true
|
visible: true
|
||||||
- state: packet-astrotame
|
- state: packet-layer
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
|
- state: packet-label-a
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-astrotame
|
state: packet-astrotame
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -98,12 +112,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: BbqSauce
|
- ReagentId: BbqSauce
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-trans-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-bbq
|
state: packet-bbq
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -124,12 +132,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Cornoil
|
- ReagentId: Cornoil
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-trans-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-cornoil
|
state: packet-cornoil
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -150,12 +152,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Frostoil
|
- ReagentId: Frostoil
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-trans-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-frostoil
|
state: packet-frostoil
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -176,12 +172,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: HorseradishSauce
|
- ReagentId: HorseradishSauce
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-solid-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-greygoo
|
state: packet-greygoo
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -202,12 +192,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Hotsauce
|
- ReagentId: Hotsauce
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-trans-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-hotsauce
|
state: packet-hotsauce
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -228,11 +212,6 @@
|
|||||||
- ReagentId: Ketchup
|
- ReagentId: Ketchup
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
|
||||||
- state: packet-solid-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-ketchup
|
state: packet-ketchup
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -252,12 +231,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Mustard
|
- ReagentId: Mustard
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-solid-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-mustard
|
state: packet-mustard
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -277,12 +250,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Blackpepper
|
- ReagentId: Blackpepper
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-solid-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-pepper
|
state: packet-pepper
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -308,6 +275,7 @@
|
|||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
visible: true
|
visible: true
|
||||||
- state: packet-layer
|
- state: packet-layer
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: packet-label
|
- state: packet-label
|
||||||
color: black
|
color: black
|
||||||
- type: Icon
|
- type: Icon
|
||||||
@@ -329,12 +297,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Soysauce
|
- ReagentId: Soysauce
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-solid-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-soysauce
|
state: packet-soysauce
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -354,12 +316,6 @@
|
|||||||
reagents:
|
reagents:
|
||||||
- ReagentId: Sugar
|
- ReagentId: Sugar
|
||||||
Quantity: 10
|
Quantity: 10
|
||||||
- type: Sprite
|
|
||||||
layers:
|
|
||||||
- state: packet-solid-2
|
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
|
||||||
visible: true
|
|
||||||
- state: packet-layer
|
|
||||||
- type: Icon
|
- type: Icon
|
||||||
state: packet-sugar
|
state: packet-sugar
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
@@ -399,6 +355,12 @@
|
|||||||
- type: SolutionContainerVisuals
|
- type: SolutionContainerVisuals
|
||||||
maxFillLevels: 6
|
maxFillLevels: 6
|
||||||
fillBaseName: bottle-alpha-
|
fillBaseName: bottle-alpha-
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "bottle-open"}
|
||||||
|
False: {state: "bottle-empty"}
|
||||||
- type: PhysicalComposition
|
- type: PhysicalComposition
|
||||||
materialComposition:
|
materialComposition:
|
||||||
Glass: 50
|
Glass: 50
|
||||||
@@ -418,6 +380,7 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
layers:
|
||||||
- state: bottle-empty
|
- state: bottle-empty
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: label-c
|
- state: label-c
|
||||||
- state: bottle-alpha-6
|
- state: bottle-alpha-6
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
@@ -443,6 +406,7 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
layers:
|
||||||
- state: bottle-empty
|
- state: bottle-empty
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: label-e
|
- state: label-e
|
||||||
- state: bottle-alpha-6
|
- state: bottle-alpha-6
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
@@ -468,6 +432,7 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
layers:
|
||||||
- state: bottle-empty
|
- state: bottle-empty
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: label-v
|
- state: label-v
|
||||||
- state: bottle-alpha-6
|
- state: bottle-alpha-6
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
@@ -490,6 +455,7 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
layers:
|
||||||
- state: bottle-empty
|
- state: bottle-empty
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: label-h
|
- state: label-h
|
||||||
- state: bottle-alpha-6
|
- state: bottle-alpha-6
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
@@ -515,6 +481,7 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
layers:
|
||||||
- state: bottle-empty
|
- state: bottle-empty
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: label-k
|
- state: label-k
|
||||||
- state: bottle-alpha-6
|
- state: bottle-alpha-6
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
@@ -540,6 +507,7 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
layers:
|
layers:
|
||||||
- state: bottle-empty
|
- state: bottle-empty
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- state: label-b
|
- state: label-b
|
||||||
- state: bottle-alpha-6
|
- state: bottle-alpha-6
|
||||||
map: ["enum.SolutionContainerLayers.Fill"]
|
map: ["enum.SolutionContainerLayers.Fill"]
|
||||||
|
|||||||
@@ -1213,7 +1213,16 @@
|
|||||||
- type: Sprite
|
- type: Sprite
|
||||||
sprite: Objects/Fun/glue.rsi
|
sprite: Objects/Fun/glue.rsi
|
||||||
state: icon
|
state: icon
|
||||||
|
layers:
|
||||||
|
- state: icon
|
||||||
|
map: ["enum.OpenableVisuals.Layer"]
|
||||||
- type: Appearance
|
- type: Appearance
|
||||||
|
- type: GenericVisualizer
|
||||||
|
visuals:
|
||||||
|
enum.OpenableVisuals.Opened:
|
||||||
|
enum.OpenableVisuals.Layer:
|
||||||
|
True: {state: "icon_open"}
|
||||||
|
False: {state: "icon"}
|
||||||
- type: Glue
|
- type: Glue
|
||||||
consumptionUnit: 10
|
consumptionUnit: 10
|
||||||
- type: Item
|
- type: Item
|
||||||
|
|||||||
|
After Width: | Height: | Size: 136 B |
|
After Width: | Height: | Size: 136 B |
|
After Width: | Height: | Size: 140 B |
|
After Width: | Height: | Size: 156 B |
|
After Width: | Height: | Size: 168 B |
|
After Width: | Height: | Size: 495 B |
|
After Width: | Height: | Size: 466 B |
@@ -9,6 +9,27 @@
|
|||||||
"states": [
|
"states": [
|
||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
|
||||||
|
After Width: | Height: | Size: 142 B |
|
After Width: | Height: | Size: 151 B |
|
After Width: | Height: | Size: 157 B |
|
After Width: | Height: | Size: 179 B |
|
After Width: | Height: | Size: 207 B |
|
After Width: | Height: | Size: 204 B |
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 276 B |
|
After Width: | Height: | Size: 241 B |
|
Before Width: | Height: | Size: 309 B After Width: | Height: | Size: 309 B |
|
After Width: | Height: | Size: 227 B |
|
Before Width: | Height: | Size: 316 B After Width: | Height: | Size: 316 B |
|
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 233 B |
@@ -0,0 +1,47 @@
|
|||||||
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon_blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_red"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_white"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-6"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
|
||||||
|
After Width: | Height: | Size: 135 B |
|
After Width: | Height: | Size: 150 B |
|
After Width: | Height: | Size: 156 B |
|
After Width: | Height: | Size: 181 B |
|
After Width: | Height: | Size: 206 B |
|
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 433 B |
|
After Width: | Height: | Size: 459 B |
|
After Width: | Height: | Size: 432 B |
@@ -1 +1,35 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
BIN
Resources/Textures/Objects/Consumable/Drinks/beer.rsi/fill-1.png
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
Resources/Textures/Objects/Consumable/Drinks/beer.rsi/fill-2.png
Normal file
|
After Width: | Height: | Size: 147 B |
BIN
Resources/Textures/Objects/Consumable/Drinks/beer.rsi/fill-3.png
Normal file
|
After Width: | Height: | Size: 151 B |
BIN
Resources/Textures/Objects/Consumable/Drinks/beer.rsi/fill-4.png
Normal file
|
After Width: | Height: | Size: 194 B |
BIN
Resources/Textures/Objects/Consumable/Drinks/beer.rsi/fill-5.png
Normal file
|
After Width: | Height: | Size: 224 B |
|
After Width: | Height: | Size: 535 B |
|
After Width: | Height: | Size: 532 B |
@@ -1 +1,35 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 692 B |
@@ -1 +1,17 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 680 B |
@@ -1 +1,17 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "drawn by givazaa", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "drawn by givazaa",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 529 B |
@@ -1 +1,17 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 145 B |
|
After Width: | Height: | Size: 144 B |
|
After Width: | Height: | Size: 183 B |
|
After Width: | Height: | Size: 225 B |
|
After Width: | Height: | Size: 233 B |
|
After Width: | Height: | Size: 537 B |
|
After Width: | Height: | Size: 561 B |
@@ -1 +1,35 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 147 B |
|
After Width: | Height: | Size: 176 B |
|
After Width: | Height: | Size: 180 B |
|
After Width: | Height: | Size: 176 B |
|
After Width: | Height: | Size: 244 B |
|
After Width: | Height: | Size: 553 B |
|
After Width: | Height: | Size: 543 B |
@@ -1 +1,35 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 498 B |
@@ -1 +1,17 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 153 B |
|
After Width: | Height: | Size: 181 B |
|
After Width: | Height: | Size: 212 B |
|
After Width: | Height: | Size: 247 B |
|
After Width: | Height: | Size: 248 B |
|
After Width: | Height: | Size: 496 B |
|
After Width: | Height: | Size: 526 B |
@@ -1 +1,35 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 139 B |
|
After Width: | Height: | Size: 167 B |
|
After Width: | Height: | Size: 157 B |
|
After Width: | Height: | Size: 191 B |
|
After Width: | Height: | Size: 201 B |
|
After Width: | Height: | Size: 621 B |
|
After Width: | Height: | Size: 625 B |
@@ -1 +1,35 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 695 B |
@@ -10,6 +10,9 @@
|
|||||||
{
|
{
|
||||||
"name": "icon"
|
"name": "icon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "icon-front"
|
"name": "icon-front"
|
||||||
},
|
},
|
||||||
|
|||||||
|
After Width: | Height: | Size: 123 B |
|
After Width: | Height: | Size: 132 B |
|
After Width: | Height: | Size: 124 B |
|
After Width: | Height: | Size: 124 B |
|
After Width: | Height: | Size: 142 B |
|
After Width: | Height: | Size: 136 B |
|
After Width: | Height: | Size: 428 B |
|
After Width: | Height: | Size: 420 B |
@@ -1 +1,38 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_empty"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-1"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fill-6"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||
|
After Width: | Height: | Size: 406 B |
@@ -1 +1,17 @@
|
|||||||
{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi", "states": [{"name": "icon"}]}
|
{
|
||||||
|
"version": 1,
|
||||||
|
"size": {
|
||||||
|
"x": 32,
|
||||||
|
"y": 32
|
||||||
|
},
|
||||||
|
"license": "CC-BY-SA-3.0",
|
||||||
|
"copyright": "https://github.com/discordia-space/CEV-Eris/raw/f7aa28fd4b4d0386c3393d829681ebca526f1d2d/icons/obj/drinks.dmi",
|
||||||
|
"states": [
|
||||||
|
{
|
||||||
|
"name": "icon"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "icon_open"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|||||||