Skip to content

Commit

Permalink
soul removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Erikafox committed Oct 11, 2024
1 parent a0eaca7 commit 24da56d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
30 changes: 0 additions & 30 deletions code/modules/food_and_drinks/food/snacks_vend.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,6 @@
/*food_flags = FOOD_FINGER_FOOD*/
w_class = WEIGHT_CLASS_TINY

/obj/item/reagent_containers/food/snacks/candy/bronx
name = "South Bronx Paradise bar"
desc = "Lose weight, guaranteed! Caramel Mocha Flavor. Something about product consumption..."
icon_state = "bronx"
item_state = "candy"
trash = /obj/item/trash/candy
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/sugar = 2, /datum/reagent/yuck = 1)
junkiness = 10
bitesize = 10
filling_color = "#e4d4b7"
tastes = list("candy" = 5, "weight loss" = 4, "insect larva" = 1)
foodtype = JUNKFOOD | RAW | GROSS
custom_premium_price = 800
var/revelation = FALSE

/obj/item/reagent_containers/food/snacks/candy/bronx/On_Consume(mob/living/eater)
. = ..()
if(ishuman(eater))
var/mob/living/carbon/human/carl = eater
var/datum/disease/P = new /datum/disease/parasite()
carl.ForceContractDisease(P, FALSE, TRUE)

/obj/item/reagent_containers/food/snacks/candy/bronx/examine(mob/user)
. = ..()
if(revelation == FALSE)
to_chat(user, "<span class='notice'>Geeze, you need to get to get your eyes checked. You should look again...</span>")
desc = "Lose weight, guaranteed! Caramel Mocha Flavor! WARNING: PRODUCT NOT FIT FOR HUMAN CONSUMPTION. CONTAINS LIVE DIAMPHIDIA SPECIMENS."
name = "South Bronx Parasite bar"
revelation = TRUE

/obj/item/reagent_containers/food/snacks/sosjerky
name = "\improper Scaredy's Private Reserve Beef Jerky"
icon_state = "sosjerky"
Expand Down
2 changes: 1 addition & 1 deletion code/modules/vending/snack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/obj/item/storage/box/gum = 3,
/obj/item/reagent_containers/food/snacks/energybar = 6,
/obj/item/reagent_containers/food/snacks/syndicake = 6,
/obj/item/reagent_containers/food/snacks/candy/bronx = 1)
)
refill_canister = /obj/item/vending_refill/snack
canload_access_list = list(ACCESS_KITCHEN)
default_price = 60
Expand Down

0 comments on commit 24da56d

Please sign in to comment.