Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Kvas #301

Merged
merged 12 commits into from
Jun 30, 2024
Merged

Kvas #301

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modular_bandastation/drinks/_drinks.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/drinks
name = "Напитки"
desc = "Добавляет новые напитки"
author = "HardexZ"
3 changes: 3 additions & 0 deletions modular_bandastation/drinks/_drinks.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_drinks.dm"

#include "code/drinks.dm"
25 changes: 25 additions & 0 deletions modular_bandastation/drinks/code/drinks.dm
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 added modular_bandastation/drinks/icons/chemical_tanks.dmi
Binary file not shown.
Binary file added modular_bandastation/drinks/icons/drinks.dmi
Binary file not shown.
1 change: 1 addition & 0 deletions modular_bandastation/modular_bandastation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@
#include "whitelist220/_whitelist220.dme"
#include "world_topics/_world_topics.dme"
#include "preferences/_preferences.dme"
#include "drinks/_drinks.dme"
Loading