Skip to content

Commit

Permalink
make it cost more for plants to make
Browse files Browse the repository at this point in the history
it still vaible to grow them.
  • Loading branch information
Julien committed Oct 6, 2023
1 parent 77ee0df commit 9395d08
Showing 1 changed file with 29 additions and 31 deletions.
60 changes: 29 additions & 31 deletions code/game/machinery/vending/vending_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@
icon_state = "snack"
hacking_safety = TRUE
products = list(
/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/extramature = 2,
/obj/item/storage/fancy/egg_box = 12,
/obj/item/storage/box/fish = 12,
/obj/item/storage/box/meat = 12,
Expand All @@ -451,25 +450,24 @@
/obj/item/storage/box/enzyme = 12,
/obj/item/storage/box/flour = 12,
/obj/item/storage/box/sugar = 12,
/obj/item/storage/box/apple = 6,
/obj/item/storage/box/banana = 6,
/obj/item/storage/box/chanterelle = 6,
/obj/item/storage/box/cherries = 6,
/obj/item/storage/box/chili = 6,
/obj/item/storage/box/cabbage = 6,
/obj/item/storage/box/carrot = 6,
/obj/item/storage/box/corn = 6,
/obj/item/storage/box/eggplant = 6,
/obj/item/storage/box/lemon = 6,
/obj/item/storage/box/lime = 6,
/obj/item/storage/box/orange = 6,
/obj/item/storage/box/potato = 6,
/obj/item/storage/box/tomato = 6,
/obj/item/storage/box/whitebeet = 6,
/obj/item/storage/box/apple = 12,
/obj/item/storage/box/banana = 12,
/obj/item/storage/box/chanterelle = 12,
/obj/item/storage/box/cherries = 12,
/obj/item/storage/box/chili = 12,
/obj/item/storage/box/cabbage = 12,
/obj/item/storage/box/carrot = 12,
/obj/item/storage/box/corn = 12,
/obj/item/storage/box/eggplant = 12,
/obj/item/storage/box/lemon = 12,
/obj/item/storage/box/lime = 12,
/obj/item/storage/box/orange = 12,
/obj/item/storage/box/potato = 12,
/obj/item/storage/box/tomato = 12,
/obj/item/storage/box/whitebeet = 12,
)

prices = list(
/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/extramature = 10,
/obj/item/storage/fancy/egg_box = 1,
/obj/item/storage/box/fish = 1,
/obj/item/storage/box/meat = 1,
Expand All @@ -479,19 +477,19 @@
/obj/item/storage/box/flour = 1,
/obj/item/storage/box/sugar = 1,
/obj/item/storage/box/apple = 1,
/obj/item/storage/box/banana = 1,
/obj/item/storage/box/chanterelle = 1,
/obj/item/storage/box/cherries = 1,
/obj/item/storage/box/chili = 1,
/obj/item/storage/box/cabbage = 1,
/obj/item/storage/box/carrot = 1,
/obj/item/storage/box/corn = 1,
/obj/item/storage/box/eggplant = 1,
/obj/item/storage/box/lemon = 1,
/obj/item/storage/box/lime = 1,
/obj/item/storage/box/orange = 1,
/obj/item/storage/box/potato = 1,
/obj/item/storage/box/tomato = 1,
/obj/item/storage/box/whitebeet = 1,
/obj/item/storage/box/banana = 2,
/obj/item/storage/box/chanterelle = 2,
/obj/item/storage/box/cherries = 2,
/obj/item/storage/box/chili = 2,
/obj/item/storage/box/cabbage = 2,
/obj/item/storage/box/carrot = 2,
/obj/item/storage/box/corn = 2,
/obj/item/storage/box/eggplant = 2,
/obj/item/storage/box/lemon = 2,
/obj/item/storage/box/lime = 2,
/obj/item/storage/box/orange = 2,
/obj/item/storage/box/potato = 2,
/obj/item/storage/box/tomato = 2,
/obj/item/storage/box/whitebeet = 2,
)
product_type = VENDOR_PRODUCT_TYPE_FOOD

0 comments on commit 9395d08

Please sign in to comment.