Skip to content

Commit

Permalink
Add meat orderables (#763)
Browse files Browse the repository at this point in the history
Добавил возможность заказать мясо по просьбе Милоша Живича.
  • Loading branch information
dj-34 authored Nov 19, 2024
1 parent dc770b0 commit 79e9c3f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions modular_bandastation/modular_bandastation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@
#include "preferences/_preferences.dme"
#include "jukebox/_jukebox.dme"
#include "objects/_objects.dme"
#include "orderables/_orderables.dme"
#include "overrides/_overrides.dme"
4 changes: 4 additions & 0 deletions modular_bandastation/orderables/_orderables.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/datum/modpack/orderables
name = "Orderables"
desc = "Расширение списка заказываемых предметов."
author = "dj-34"
3 changes: 3 additions & 0 deletions modular_bandastation/orderables/_orderables.dme
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "_orderables.dm"

#include "code/orderables.dm"
9 changes: 9 additions & 0 deletions modular_bandastation/orderables/code/orderables.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/datum/orderable_item/milk_eggs/meat_beef
name = "Beef Meat Slab"
item_path = /obj/item/food/meat/slab
cost_per_order = 25

/datum/orderable_item/milk_eggs/meat_pork
name = "Pork Meat Slab"
item_path = /obj/item/food/meat/slab/pig
cost_per_order = 25

0 comments on commit 79e9c3f

Please sign in to comment.