From 5e11dc88d87316e46d3d4e7cad7649d227495696 Mon Sep 17 00:00:00 2001 From: "Tad \"Taddy\" Johnson" <120885811+TadJohnson00@users.noreply.github.com> Date: Mon, 26 Jun 2023 00:32:25 +1000 Subject: [PATCH] Gunmetal (#79) * Tweak Typewriter, add guns to cargo Tweaks the Typewriter stats and sounds Adds mobster entity Adds guns to cargo and safes to mapping * Change mafia starting gear location * Add various drinks, clothes, poster Added five new drinks, added sprites for moonshine jug and glass, added new uniform and jacket, added new poster. * Fixed erroneous capitalisation this happens every time I swear * Fixed erroneous mistake there it is again >.< * Changed Daiquiri recipe because the mojito is a bitch Title --- .../Locale/en-US/flavors/flavor-profiles.ftl | 7 ++ .../meta/consumable/drink/alcohol.ftl | 17 +++ .../VendingMachines/Inventories/theater.yml | 2 + .../Entities/Clothing/OuterClothing/coats.yml | 18 ++++ .../Entities/Clothing/Uniforms/jumpsuits.yml | 11 ++ .../Objects/Consumable/Drinks/drinks.yml | 79 ++++++++++++++ .../Structures/Wallmounts/posters.yml | 9 ++ .../Prototypes/DeltaV/Flavors/flavors.yml | 24 +++++ .../Reagents/Consumable/Drink/drinks.yml | 102 ++++++++++++++++++ .../DeltaV/Recipes/Reactions/drinks.yml | 64 +++++++++++ .../Objects/Consumable/Drinks/drinks.yml | 2 +- .../Consumable/Drinks/drinks_bottles.yml | 15 +++ .../Reagents/Consumable/Drink/alcohol.yml | 3 + .../equipped-OUTERCLOTHING.png | Bin 0 -> 1550 bytes .../Coats/leatherjacket.rsi/icon.png | Bin 0 -> 806 bytes .../Coats/leatherjacket.rsi/inhand-left.png | Bin 0 -> 1089 bytes .../Coats/leatherjacket.rsi/inhand-right.png | Bin 0 -> 1038 bytes .../Coats/leatherjacket.rsi/meta.json | 26 +++++ .../sober.rsi/equipped-INNERCLOTHING.png | Bin 0 -> 1703 bytes .../Uniforms/Jumpsuit/sober.rsi/icon.png | Bin 0 -> 875 bytes .../Jumpsuit/sober.rsi/inhand-left.png | Bin 0 -> 1110 bytes .../Jumpsuit/sober.rsi/inhand-right.png | Bin 0 -> 1032 bytes .../Uniforms/Jumpsuit/sober.rsi/meta.json | 26 +++++ .../Consumable/Drinks/arsonist.rsi/icon.png | Bin 0 -> 1988 bytes .../Consumable/Drinks/arsonist.rsi/meta.json | 15 +++ .../Consumable/Drinks/daiquiri.rsi/icon.png | Bin 0 -> 757 bytes .../Consumable/Drinks/daiquiri.rsi/meta.json | 14 +++ .../Consumable/Drinks/greengrass.rsi/icon.png | Bin 0 -> 1026 bytes .../Drinks/greengrass.rsi/meta.json | 14 +++ .../Consumable/Drinks/gunmetal.rsi/icon.png | Bin 0 -> 942 bytes .../Consumable/Drinks/gunmetal.rsi/meta.json | 14 +++ .../Consumable/Drinks/lemondrop.rsi/icon.png | Bin 0 -> 746 bytes .../Consumable/Drinks/lemondrop.rsi/meta.json | 14 +++ .../Consumable/Drinks/moonshine.rsi/icon.png | Bin 0 -> 751 bytes .../Consumable/Drinks/moonshine.rsi/meta.json | 14 +++ .../Drinks/moonshinebottle.rsi/icon.png | Bin 0 -> 969 bytes .../Drinks/moonshinebottle.rsi/meta.json | 14 +++ .../Posters/TJohnson.rsi/fuckaround.png | Bin 0 -> 1729 bytes .../Wallmounts/Posters/TJohnson.rsi/meta.json | 14 +++ 39 files changed, 517 insertions(+), 1 deletion(-) create mode 100644 Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Drinks/drinks.yml create mode 100644 Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/posters.yml create mode 100644 Resources/Prototypes/DeltaV/Flavors/flavors.yml create mode 100644 Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml create mode 100644 Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/inhand-left.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/inhand-right.png create mode 100644 Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/equipped-INNERCLOTHING.png create mode 100644 Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/inhand-left.png create mode 100644 Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/inhand-right.png create mode 100644 Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/arsonist.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/arsonist.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/daiquiri.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/daiquiri.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/greengrass.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/greengrass.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/gunmetal.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/gunmetal.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/moonshine.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/moonshine.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/moonshinebottle.rsi/icon.png create mode 100644 Resources/Textures/DeltaV/Objects/Consumable/Drinks/moonshinebottle.rsi/meta.json create mode 100644 Resources/Textures/DeltaV/Structures/Wallmounts/Posters/TJohnson.rsi/fuckaround.png create mode 100644 Resources/Textures/DeltaV/Structures/Wallmounts/Posters/TJohnson.rsi/meta.json diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 6ff2fcc306..286977aead 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -214,3 +214,10 @@ flavor-complex-sapopicante = like tomatoes and spices flavor-complex-graveyard = like a strong cold brew flavor-complex-bubbletea = like creamy sweetness flavor-complex-corncob = like a sick joke + +## Velta o.o +flavor-complex-gunmetal = bittersweet and creamy +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 diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 2fc1d88773..52dd16cc18 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -267,3 +267,20 @@ reagent-desc-sapopicante = Tastes nothing like a toad. reagent-name-graveyard = graveyard reagent-desc-graveyard = For those shifts that never seem to end. + +## Velta o.o + +reagent-name-gunmetal = gunmetal +reagent-desc-gunmetal = A controversial drink created by the infamous Solus Cream, the first bartender to serve welding fuel without losing their liquor license. + +reagent-name-lemondrop = lemon drop +reagent-desc-lemondrop = A simple, tangy, and tasty drink consisting of lemon, vodka, and simple syrup. Refreshing! + +reagent-name-greengrass = green grass +reagent-desc-greengrass = Green grass, or grĂ¼ne wiese, is a peculiar green cocktail hailing from the now dissolved GDR. Popular amongst the disillusioned and ingenuous alike. + +reagent-name-daiquiri = classic daiquiri +reagent-desc-daiquiri = A sweet rum and lime mix, a favourite of writers and politicians. + +reagent-name-arsonistsbrew = arsonist's brew +reagent-desc-arsonistsbrew = Take a sip and laugh, while you watch your world burn. diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 4b15ba7991..39ee8dc218 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -60,6 +60,7 @@ ClothingUniformJumpsuitDameDane: 1 ClothingShoesDameDane: 1 ClothingOuterDameDane: 1 + ClothingUniformJumpsuitSober: 1 ClothingOuterClownPriest: 1 ClothingUniformSkirtTurtle: 2 ClothingUniformSwimsuitBlue: 2 @@ -68,3 +69,4 @@ emaggedInventory: ClothingShoesBling: 1 ClothingOuterDogi: 1 + ClothingOuterCoatLeatherJacket: 1 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml index 9a478e33d1..3e0ca72608 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/coats.yml @@ -72,3 +72,21 @@ Slash: 0.9 Piercing: 0.6 Heat: 0.75 + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatLeatherJacket + name: leather jacket + description: A rugged leather jacket, for fashion or for utility. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi + - type: TemperatureProtection + coefficient: 0.1 + - type: Armor + modifiers: + coefficients: + Slash: 0.9 + Heat: 0.75 diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml index 7a62d76e32..a0581e0d18 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Uniforms/jumpsuits.yml @@ -129,3 +129,14 @@ sprite: DeltaV/Clothing/Uniforms/Jumpsuit/secformal.rsi - type: Clothing sprite: DeltaV/Clothing/Uniforms/Jumpsuit/secformal.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitSober + name: sober sweater + description: For the more lucid moments. + components: + - type: Sprite + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi + - type: Clothing + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Drinks/drinks.yml new file mode 100644 index 0000000000..8379c2b35a --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Drinks/drinks.yml @@ -0,0 +1,79 @@ +- type: entity + parent: DrinkGlassBase + id: DrinkGunmetalGlass + name: gunmetal glass + description: A cloudy mix of rum, cream, and... is that welding fuel? Probably tasty. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Gunmetal + Quantity: 30 + - type: Sprite + sprite: DeltaV/Objects/Consumable/Drinks/gunmetal.rsi + +- type: entity + parent: DrinkGlassBase + id: DrinkLemonDropGlass + name: lemon drop + description: A martini glass filled with a translucent mix of refreshing lemony goodness. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: LemonDrop + Quantity: 30 + - type: Sprite + sprite: DeltaV/Objects/Consumable/Drinks/lemondrop.rsi + +- type: entity + parent: DrinkGlassBase + id: DrinkGreenGrassGlass + name: green grass + description: An odd green cocktail, topped with oranges, ice, and a plastic straw. Curious. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: GreenGrass + Quantity: 30 + - type: Sprite + sprite: DeltaV/Objects/Consumable/Drinks/greengrass.rsi + +- type: entity + parent: DrinkGlassBase + id: DrinkDaiquiriGlass + name: classic daiquiri + description: Rum, lime, and simple syrup. Such class, such refinement. + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Daiquiri + Quantity: 30 + - type: Sprite + sprite: DeltaV/Objects/Consumable/Drinks/daiquiri.rsi + +- type: entity + parent: DrinkGlassBase + id: DrinkArsonistsBrewGlass + name: 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 + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: ArsonistsBrew + Quantity: 30 + - type: Sprite + sprite: DeltaV/Objects/Consumable/Drinks/arsonist.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/posters.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/posters.yml new file mode 100644 index 0000000000..fc27e243a0 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Structures/Wallmounts/posters.yml @@ -0,0 +1,9 @@ +- type: entity + parent: PosterBase + id: PosterLegitFuckAround + name: Fuck Around... + description: ...and find out. Sponsored by the Intergalactic Bartenders' Federation, Delta branch. + components: + - type: Sprite + sprite: DeltaV/Structures/Wallmounts/Posters/TJohnson.rsi + state: fuckaround \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Flavors/flavors.yml b/Resources/Prototypes/DeltaV/Flavors/flavors.yml new file mode 100644 index 0000000000..3663feb237 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Flavors/flavors.yml @@ -0,0 +1,24 @@ +- type: flavor + id: gunmetal + flavorType: Complex + description: flavor-complex-gunmetal + +- type: flavor + id: lemondrop + flavorType: Complex + description: flavor-complex-lemondrop + +- type: flavor + id: greengrass + flavorType: Complex + description: flavor-complex-greengrass + +- type: flavor + id: daiquiri + flavorType: Complex + description: flavor-complex-daiquiri + +- type: flavor + id: arsonistsbrew + flavorType: Complex + description: flavor-complex-arsonistsbrew diff --git a/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml new file mode 100644 index 0000000000..efdcdb6794 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Reagents/Consumable/Drink/drinks.yml @@ -0,0 +1,102 @@ +- type: reagent + id: Gunmetal #Credit to DinkusMcsplinkus for inspiring this drink. This could've also been called "Creamy Ignition" + name: reagent-name-gunmetal + parent: BaseDrink + desc: reagent-desc-gunmetal + physicalDesc: reagent-physical-desc-strong-smelling + flavor: gunmetal + color: "#994422" + metamorphicSprite: + sprite: DeltaV/Objects/Consumable/Drinks/gunmetal.rsi + state: icon + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + Poison: + effects: + - !type:HealthChange + damage: + types: + Poison: 0.5 + +- type: reagent + id: LemonDrop + name: reagent-name-lemondrop + parent: BaseDrink + desc: reagent-desc-lemondrop + physicalDesc: reagent-physical-desc-lemony-fresh + flavor: lemondrop + color: "#fff789" + metamorphicSprite: + sprite: DeltaV/Objects/Consumable/Drinks/lemondrop.rsi + state: icon + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + +- type: reagent + id: GreenGrass + name: reagent-name-greengrass + parent: BaseDrink + desc: reagent-desc-greengrass + physicalDesc: reagent-physical-desc-tangy + flavor: greengrass + color: "#66aa55" + metamorphicSprite: + sprite: DeltaV/Objects/Consumable/Drinks/greengrass.rsi + state: icon + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + +- type: reagent + id: Daiquiri + name: reagent-name-daiquiri + parent: BaseDrink + desc: reagent-desc-daiquiri + physicalDesc: reagent-physical-desc-tart + flavor: daiquiri + color: "#ddffdd" + metamorphicSprite: + sprite: DeltaV/Objects/Consumable/Drinks/daiquiri.rsi + state: icon + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + +- type: reagent + id: ArsonistsBrew + name: reagent-name-arsonistsbrew + parent: BaseDrink + desc: reagent-desc-arsonistsbrew + physicalDesc: reagent-physical-desc-volatile + flavor: arsonistsbrew + color: "#fff789" + metamorphicSprite: + sprite: DeltaV/Objects/Consumable/Drinks/arsonist.rsi + state: icon + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 2 + Poison: + effects: + - !type:HealthChange + damage: + types: + Heat: 2 + - !type:FlammableReaction + multiplier: 0.5 + - !type:Ignite + - !type:Emote + emote: Laugh + probability: 0.25 diff --git a/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml b/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml new file mode 100644 index 0000000000..a704456c91 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml @@ -0,0 +1,64 @@ +- type: reaction + id: Gunmetal + reactants: + Cream: + amount: 1 + WeldingFuel: + amount: 1 + Rum: + amount: 1 + products: + Gunmetal: 3 + +- type: reaction + id: LemonDrop + reactants: + Vodka: + amount: 2 + Sugar: + amount: 2 + JuiceLemon: + amount: 1 + products: + LemonDrop: 5 + +- type: reaction + id: GreenGrass + reactants: + BlueCuracao: + amount: 2 + JuiceOrange: + amount: 3 + Ice: + amount: 1 + products: + GreenGrass: 6 + +- type: reaction + id: Daiquiri + reactants: + DeadRum: + amount: 5 + JuiceLime: + amount: 3 + Sugar: + amount: 2 + products: + Daiquiri: 10 + +- type: reaction + id: ArsonistsBrew + minTemp: 373.15 + reactants: + Thermite: + amount: 1 + WeldingFuel: + amount: 1 + CapsaicinOil: + amount: 1 + Whiskey: + amount: 1 + Phosphorus: + amount: 1 + products: + ArsonistsBrew: 5 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index c89db4de25..3cd5437e37 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -1643,7 +1643,7 @@ Quantity: 30 - type: Drink - type: Sprite - sprite: Objects/Consumable/Drinks/glass_clear.rsi + sprite: DeltaV/Objects/Consumable/Drinks/moonshine.rsi - type: entity parent: DrinkGlassBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml index c4025d8211..e289005156 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_bottles.yml @@ -524,3 +524,18 @@ Quantity: 100 - type: Sprite sprite: Objects/Consumable/Drinks/flaskholywater.rsi + +- type: entity + parent: DrinkBottleBaseFull + id: DrinkMoonshineFull + name: jug of moonshine + description: A jug, of the classic variety, containing copious amounts of moonshine. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: Moonshine + Quantity: 100 + - type: Sprite + sprite: DeltaV/Objects/Consumable/Drinks/moonshinebottle.rsi diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index eec99bb537..ed23979de1 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -1067,6 +1067,9 @@ physicalDesc: reagent-physical-desc-strong-smelling flavor: alcohol color: "#d1d7d155" + metamorphicSprite: + sprite: DeltaV/Objects/Consumable/Drinks/moonshine.rsi + state: icon metabolisms: Drink: effects: diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..67ccbf641f4cc757df3b5e6318c4756fb4e8556e GIT binary patch literal 1550 zcmV+p2J!icP)|{1EL_75@Wyx@K@HGjK=$2g+9uuBgEn12

O9 zYDxG&c)*qe3STNc?eUZ1tjBMP?L=%GG}SYdt>JVH>p9yL?iUW5`I7!~9(9v|QJ9TO z?ULDzLySqHgh*3jnLI@zQVWvV-@d_b-wZ3_(dBPZ#ui7GoOlOBElF2HYDRQJzC2}> z`|muR%7ry}7oM-uR zf8DbH000SaNLh0L01FZT01FZU(%pXi000Cvy-?4bW#cn}vPT>U8xMl_#t;`KV24?P+z5w92eHfDb-?5tEx=F_C7o zDS9UtvhGJv#)z1*9S`LENq->fbwfCtjWAm+;rp(*84m^8b@9Vd+<~i_pxkO7iS=qO z;P7}n4*T}|{lN1)LG8Lm5S&U?@DqPi@&2@uh*j@stkNg z3H%^m6#uEFh-!d?c{m2p&1xEHeOg32Jrzcn$hreEJrSI^o}YD}f(Uv`pK8yWVdQ4{OsEm%cWWRRMRusK?3BX5fc+m zJmeApXU3zUno|h(wD5yY)YIY!dGxCy!5J)iSlDQ~W$7h+$fIA8luN)YGWVg-vMdz| zG#be9Lwz(Q`$gMy%Cxd4`_vnzs-isEp4BfYw{sCpZf9`xZhE71Uu4aU9?7Si zz=a)zjb}>xwu5jvX9k!7W`G%B2ABb6;LS1c2ZCZUNiqJ-(EtDd07*qoM6N<$g7P%g A1ONa4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..090bac4be1a9047cc7185066d10e93764f7fc888 GIT binary patch literal 806 zcmV+>1KIqEP)#<`vQ{(8=N-p+Xr_+xpa;M5I5p;)rxlTmFpHKzri zX`q83t+b~N$C^q^B>8uI+~QO9WL;e=4*y6~N6K}t$W$9{4&4_NwmuFSw z{x?r2Gd$#V4@IH=(RE*YAh-=*TdwfhKkX(}|x`N$3=#~B9g>S;|XYQ)3 zR3rcZ010qNS#tmY3labT3lag+-G2N400CY}L_t(o3GGwgPlGTJz7bPd7o%i4+?)@Z z`2YVwCVTP6MmAuH86poLA4!{vr7gbNOGw-6eRp5KJBYk_1-t@Yf&Z?+WUK&D6g5Mb zJkLkxI~z)-^P~9k?vc{{EAfkK8B%;4XnwP9&zoi}i9lwtY*3ufE@}I==_2d8{;|T3 zdy_)C5>5)laonu#pXjUnBo@x-n7&iHkRVZ26E9D*+@+c3VPEh4i|_q7{fkJa8^%C6FtnP6lZE8rFI3U~#+0Vb54*g&dd82|tP07*qoM6N<$f(Lhc4*&oF literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..458e584580f96ec9a171096699397f5e8ed37fc1 GIT binary patch literal 1089 zcmV-H1it%;P)#<`vQ{(8=N-p+Xr_+xpa;M5I5p;)rxlTmFpHKzri zX`q83t+b~N$C^q^B>8uI+~QO9WL;e=4*y6~N6K}t$W$9{4&4_NwmuFSw z{x?r2Gd$#V4@IH=(RE*YAh-=*TdwfhKkX(}|x`N$3=#~B9g>S;|XYQ)3 zR3rcZ010qNS#tmY3labT3lag+-G2N400MbQL_t(|0qvS!PunmQ#cwLqm7uXz43)9* zg2ea#K$CcYjZr~cw24ys(2!&0MkcCL<6I#{oJb}9d#?SJktEpKm7K>)tPP3I>R`%W5wo8LSm(JQ3gZ=*F zT!zD;d_6j?f5@ZUgQHzq@4jAZLxalB05I76;EVkIbLob&*=%0jQI7gp2u(eMIkrl? z*)@H&$z)QTo?XcE>PenfD|wjRxa!04N%n7Xi*x~x*dLAL(`a9Au7AmNIt|(k=w+pz zlzLcV*%m!#Gxg72YDe^2uh%l4&uWQkpvb%Z0C{-C<8tYKXy0}P^mK2Lx9YXo(z>K2 zP`au1m%(5ltH*hrM*?O3h5BZhUvI7FYwt=Yd4TTB*xk#GuE3KU9fVD}C;$ImLT`f( zdSRoHHLo94WGBBF)--ne&=W>E>f6?SqMqL^Io%n6TF&zv8r(9cgR5HgmyOQd_5Ob^d!EF7Hn|wDz~@XjwqdjaT;!ZOc0e zkN^pg011!)36KB@kN^pg011!)36KB@kN^pgKqLXPufmb`Oq*3-j+=9EXNj?2qLYrs zOlOfOhRGxLV0QOg^3UIDm1TJZcXa%-%wI+YW|$m|)YjiAfyrCNBsAUUou-g(CL)Hw zMX1EaB=l|x;KXT5OhR%DL2s5o>GrkT;KaFWOoEE_#sl;`5WBlYOo9UFjR)v}akq>~ z=p_J!VG%>nTL4xu1igC=>eI))`cKdmS;Qpx+Dwzc2O;nRS*cw1m8L?S00000NkvXX Hu0mjf;b#%Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Coats/leatherjacket.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..3d5a57d4d2ed29b0194cb7e9c64719bfca1ea77a GIT binary patch literal 1038 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..9b64bf8e0d8b400b8a1ce46e1d5aaa10ea910287 GIT binary patch literal 875 zcmV-x1C;!UP)#<`vQ{(8=N-p+Xr_+xpa;M5I5p;)rxlTmFpHKzri zX`q83t+b~N$C^q^B>8uI+~QO9WL;e=4*y6~N6K}t$W$9{4&4_NwmuFSw z{x?r2Gd$#V4@IH=(RE*YAh-=*TdwfhKkX(}|x`N$3=#~B9g>S;|XYQ)3 zR3rcZ010qNS#tmY3labT3lag+-G2N400E;(L_t(o31eUw1*0J_8UmvsFw#SSk(2=7 z7uNg_QqRW5#_;RcFSu4@{>Qi1NivgY#iEk>|GBw&P%MVK0LlP4h>8k=4p30B1_kZ^ zuV23~OrF@lARxfcAi&Ry;f4<%KQnyz@R1=mzkvaiR-QdNP0(zRAp{jk$(b^MEC(hm z22es|Wn}~B0(2LE;{W&WUktCGUnFQIvR;CT5M(GV0Sh6+fj)vO0r?UX0w5ZcK+yrR96e;nu^ePJNe)mD`@_J)$;R;I`!^{43xmG+7TwAC`6M|2 zWE2kv8-s+1FovmLzI+BcjP&$Ek^?}#XJcar$MvsYKN-IK0EPh2K_D>@=HVpW0VHJ^ zkhiUkwBg0<(Q{WB(fJrbGb%6|0;3@?8Uh4D002+>r|QDazU%-1002ovPDHLkV1o0B Bik<)f literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..aa444fa6d0374220b07c20d8b6468b4180b3f605 GIT binary patch literal 1110 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV9d*Ob`Ho)PG(@xm{>aTthP&_ z#IbtgX2HdQ8Yds=wdrUCZn~mjb~q_*%E7dErRi>Gdv5PF_S|;rm{Vj&@A}sN4Qn?o zouZ_A^XBhc9@nd5OeY`PIrsO!s&ke1&QszW(stIJc+2IsWUFO`&VTH%{EleW>=(M5lc@f9AR0RY?&` z7Yf>)QubINeUgThRqC`8!ATBTfkvy}O8@!jyIDuh`JdS88;?#*63*YhBK2jK*V&G| zQ`6H!pZ+uVS2wnKQp)eT@ZZJK_-ch6yz$ZNepkNO74I%k(eOFx=zbl`-hJKsLN6-) z7Km%V+}*Y8{ehcoCHJB;t^X>sru;INtgvjHCbA{g`SPCWSKnJ5FP{)IS$$X2UE3E^ z|2}NZKlDER-KsSqD!>TfEbxddW?@}fed(WJ!VPcwt4NywHxE?o{0pEV-5 z9zRY!u_m(r`n{Wn9_^64ZCw29p8w|!HS0O_g%lXEp~mm73dx7>#zgPuo||K)UH@O^ z=d63y@wax`_1U&u`urwhGDwlF<%(fS2eS5_^SaNCltJz!hK8iGNyq_2TbGlW3YGO!S{9YS7!fu-F$o}zo~{7%j=T# zYF`_5S4+t^iw{f6&KJ5I)N!f#+J!rDN!88URz7!Wy73??D$4Nd-S+nC$hcY4YwXm2 z#!S96wW(OWwMp4{^XE^S~^>PW$ZlJh>hX$`E6VVSgGc-Ep^Zy}&+fRkOvG&C zrJeCoVtzBs_G&zCs(Qt&y-NPIX9J4|9;7g*Ve9=z51p?pXWM^v;hMU=)fZJnm-dPF zt+%vaVE1ljsPV-}-HM3d5=D;d%bg$?`vCx$>4WC~fUg1=|PYIYz8qHbe ZF}@dY6YMfOVFXOB44$rjF6*2UngFzC19SiY literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/sober.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..96fdce44fc1d9b61d123642d0a65b19d0671cb4c GIT binary patch literal 1032 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

O9 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 Qc>n+a07*qoM6N<$g16Pb`2YX_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Drinks/gunmetal.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Drinks/gunmetal.rsi/meta.json new file mode 100644 index 0000000000..4c0b620dfd --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Drinks/gunmetal.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..494f567b52ed8b9014ee1e268b733b514557bcd6 GIT binary patch literal 746 zcmV|{1EL_75@Wyx@K@HGjK=$2g+9uuBgEn12

O9 zYDxG&c)*qe3STNc?eUZ1tjBMP?L=%GG}SYdt>JVH>p9yL?iUW5`I7!~9(9v|QJ9TO z?ULDzLySqHgh*3jnLI@zQVWvV-@d_b-wZ3_(dBPZ#ui7GoOlOBElF2HYDRQJzC2}> z`|muR%7ry}7oM-uR zf8DbH000SaNLh0L01FZT01FZU(%pXi0003YNklr39RMdU z*!_o@X>M?c>gL1D#!7=M|M&mt|0gfz?+4Myj=`z{D9D0K0-N}TeWwm!6NiaCf5&j} z*~?x3rNrGFfHX+0156GV&4fz=T^wrpescp2d2LmBP%!UD#vpNC&RzCru4yxZEC)FP z-3)AelHv&D2wM{+`=3AFGW`GhiQ&hO_Y52yf?!%e*ofiqnR^E%g-YyU77>#MNOAzk zV2~p$^kwb;0Uhw-*)0Zses%^HHW`NVH@_SVa58g%Sx!?LB&07*qoM6N<$f^A$xxBvhE literal 0 HcmV?d00001 diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/meta.json new file mode 100644 index 0000000000..4c0b620dfd --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Drinks/lemondrop.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Drinks/moonshine.rsi/icon.png b/Resources/Textures/DeltaV/Objects/Consumable/Drinks/moonshine.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..bb2cd4cdf4fc7c6054d2d718a35b778a03435a16 GIT binary patch literal 751 zcmV|{1EL_75@Wyx@K@HGjK=$2g+9uuBgEn12

O9 zYDxG&c)*qe3STNc?eUZ1tjBMP?L=%GG}SYdt>JVH>p9yL?iUW5`I7!~9(9v|QJ9TO z?ULDzLySqHgh*3jnLI@zQVWvV-@d_b-wZ3_(dBPZ#ui7GoOlOBElF2HYDRQJzC2}> z`|muR%7ry}7oM-uR zf8DbH000SaNLh0L01FZT01FZU(%pXi0003dNkl@h&eRH86RS900ZaBTzF4;{yCZ34UT7!Gg;aJmTyi3kb;Lkw%pw#{nP{ zK#l-`pAZU6!o-k-2s24?fVRFKkD9tF4>Jo310SC-!~1tHvD$F!=4}RG6kwG@7bM96 zFwML?ybQv^LJXYjOfVsa&!4}5*`L1&D+JNJygbBdLQ_SN z1JKN307VU{fFcK&nwv3zd=H{Q;P0P5q}oq;6u=xovdvHpB!>Vfh2sN+Wb+bsH_L8<1Y5zzLa-2R zd=>r!Z3SBeK~Mw{J9}S^g!PUQBBHa*-j6eLE;DDqKV|5qTQ>xzRdiy}h&G>C&>Ej; zpo1Vigp#^zPtQ)q`FFhE;8XQ_Q1$wM-=8Cx&bT`GnuJGn+bIf<3s0>SZN(eH?Rq|$ z7Ty;gaO8l(7fMf6`B8DM%CCx@cx(dvs;8Fw!Kojt=N(hHUpQLx82Yi?F* zm&|TlVnm6ck)p&h21N#?T9Vn{zM(JQ3yb?$Z)lLO9bj4Jny9!8n>Xb>3JUqo>w`9z&)H$uB7&)1S@4^D(q0Aan)Ii`A^Y*Eza{_^Le7CG6}%pX_g2`ULJ(Xacvy z7w-T7010qNS#tmY3labT3lag+-G2N400IF?L_t(o3GG$QPQpMC9!k|B6pB9yccUIm z03h@c_F#DhmQK7t1*kroPdXXBQil3v@lkUH4m*BH#z`SKt33P_IAJ zW-Iqqs+rC7L*#S4gkAHjdGkn zf^zu|3WZZ@i~b1{D3xv@mpz2hEnp)sVBD@K&u5SYI=RN@;0@#g=$ixQ{U}MCwT2_b4gN+}9SROZlEC%io r17K%?d=|{1EL_75@Wyx@K@HGjK=$2g+9uuBgEn12

O9 zYDxG&c)*qe3STNc?eUZ1tjBMP?L=%GG}SYdt>JVH>p9yL?iUW5`I7!~9(9v|QJ9TO z?ULDzLySqHgh*3jnLI@zQVWvV-@d_b-wZ3_(dBPZ#ui7GoOlOBElF2HYDRQJzC2}> z`|muR%7ry}7oM-uR zf8DbH000SaNLh0L01FZT01FZU(%pXi000E|Nkl0jb+k5T6L7LQ=8_ zEhLbpG>PpvHg;^s%o+QR?C1BCKr6V?cxLXsbI*DA-tn`6|5=(`@XOSnd!=H%@NQ*( z(7lS%fY+d?K%sm%6s#^E&U8JKWuOMUW~cCcQo5fU&zd27nfneGj1SlJt+mzesh8~8 z@f-=ziH9ify-~@;X$A1Z7ank?e1F|zd>((IP-o+wazGKING!dveKe$`YA^45$R)Vr zQi4_+A+yb>)wyEj2}F6J)njzB{<66Rqnjnjp1xdfR~$>gdS$Bp@@A`7$0Cpr;#%wk zr_d(8wAqJS54dK4K_#HfHxzKKh<+BA_CfI5zuwVEH2F9_|YTUG%+!O14BdlspseCbrT8@ z8?d*x7aRFJex9Ah*w~nuz;j9(@ajrnyw&2FQzuvw-4nbWS3kQ3zu&K)oZU_kf)P}P zfYZ)0&|gMv?Ao;>0oKc>>U!q%vvnjszBGwqsYL?{iFkLnCc>GdohEtm&rnRl8NWfoP~gMb`la}CjM~`NCx%~Rq80gNrJ*}O!malW5-md zhsCT&W|7OKb@NVqbP1!Qqb3u^sb=Ar0oF@0Kws9EjV9xfNEtiIY|IJ?0{Z+RJ;Lps z>U|PNM^_)lUq7$Q#29Wp;7EW6JRT4B^$+Uwz5l_7rrF+l`yH&V=de2#HYB=s_9-$; zNT=@W!Sf>1)xMCueRd?kdXWHyHGEWECw4fAy!g_qC=@r<)y$!*UA?SI%L+7sSZ5DP zn+5d^S^tNI4aoj*>j6gs1Qr5Z+Z*i9Vhp)L3CTDv@i