forked from ss220club/BandaStation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Квас портированный с массметы. Щитспаун онли. :cl: add: Квас /:cl: --------- Co-authored-by: PhantornRU <[email protected]>
- Loading branch information
1 parent
a89cfed
commit ffce47a
Showing
6 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/datum/modpack/drinks | ||
name = "Напитки" | ||
desc = "Добавляет новые напитки" | ||
author = "HardexZ" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#include "_drinks.dm" | ||
|
||
#include "code/drinks.dm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/datum/reagent/consumable/kvass | ||
name = "Квас" | ||
description = "Напиток, приготовленный путем брожения хлеба, ржи или ячменя, который обладает освежающим и слегка кисловатым вкусом." | ||
color = "#351300" | ||
nutriment_factor = 1 | ||
taste_description = "a pleasant tartness with a hint of sweetness and a bread-like aftertaste." | ||
|
||
/datum/glass_style/drinking_glass/kvass | ||
required_drink_type = /datum/reagent/consumable/kvass | ||
name = "стакан кваса" | ||
desc = "В стакане кристально чистая жидкость насыщенного темно-коричневого цвета, которая кажется почти янтарной при определенном угле освещения." | ||
icon = 'modular_bandastation/drinks/icons/drinks.dmi' | ||
icon_state = "kvass" | ||
|
||
/datum/export/large/reagent_dispenser/kvass | ||
unit_name = "kvasstank" | ||
export_types = list(/obj/structure/reagent_dispensers/kvasstank) | ||
|
||
/obj/structure/reagent_dispensers/kvasstank | ||
name = "бочка кваса" | ||
desc = "Ярко-желтая бочка с квасом, которая сразу привлекает внимание своим насыщенным цветом. Она выполнена в классическом стиле, из толстого, прочного металла с гладкой, блестящей поверхностью. Бочка имеет цилиндрическую форму, слегка расширяясь к середине и снова сужаясь к краям." | ||
icon = 'modular_bandastation/drinks/icons/chemical_tanks.dmi' | ||
icon_state = "kvass" | ||
reagent_id = /datum/reagent/consumable/kvass | ||
openable = TRUE |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters