forked from tgstation/tgstation
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## About The Pull Request Портирует некоторые напитки с парадиза и переносит напитки из отдельного модуля в модуль еды ## Why It's Good For The Game Бухло это всегда вкусно и весело ## Изображения изменений ![image](https://github.com/user-attachments/assets/3c42486e-3dbe-4042-8804-37cde0d362e1) ![image](https://github.com/user-attachments/assets/db2a313f-36c4-4fcf-9e14-f661651e0919)
- Loading branch information
1 parent
5e50d8f
commit 83bf9b8
Showing
10 changed files
with
533 additions
and
37 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
39 changes: 39 additions & 0 deletions
39
modular_bandastation/objects/code/consumables/customer_data.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,39 @@ | ||
/datum/customer_data/american/New() | ||
orderable_objects[VENUE_BAR] |= list( | ||
/datum/reagent/consumable/ethanol/soundhand = 5, | ||
/datum/reagent/consumable/ethanol/silverhand = 6, | ||
) | ||
. = ..() | ||
|
||
/datum/customer_data/british/gent/New() | ||
orderable_objects[VENUE_BAR] |= list( | ||
/datum/reagent/consumable/ethanol/pegu_club = 5, | ||
/datum/reagent/consumable/ethanol/oldfashion = 6, | ||
) | ||
. = ..() | ||
|
||
/datum/customer_data/british/New() | ||
orderable_objects[VENUE_BAR] |= list( | ||
/datum/reagent/consumable/ethanol/brandy_crusta = 6, | ||
) | ||
. = ..() | ||
|
||
/datum/customer_data/french/New() | ||
orderable_objects[VENUE_BAR] |= list( | ||
/datum/reagent/consumable/ethanol/vampiro = 4, | ||
) | ||
. = ..() | ||
|
||
/datum/customer_data/japanese/New() | ||
orderable_objects[VENUE_BAR] |= list( | ||
/datum/reagent/consumable/ethanol/rainbow_sky = 2, | ||
/datum/reagent/consumable/ethanol/innocent_erp = 4, | ||
) | ||
. = ..() | ||
|
||
/datum/customer_data/mexican/New() | ||
orderable_objects[VENUE_BAR] |= list( | ||
/datum/reagent/consumable/ethanol/black_blood = 5, | ||
) | ||
. = ..() | ||
|
Oops, something went wrong.