diff --git a/code/game/objects/items/trash_vr.dm b/code/game/objects/items/trash_vr.dm index 43cadda3f70..967ec247a54 100644 --- a/code/game/objects/items/trash_vr.dm +++ b/code/game/objects/items/trash_vr.dm @@ -35,3 +35,10 @@ name = "dirty fancy plate" icon = 'icons/obj/trash_vr.dmi' icon_state = "fancyplate" + +/obj/item/trash/monkfishremains + name = "monkfish remains" + icon = 'icons/obj/trash_vr.dmi' + icon_state = "monkfishremains" + desc = "the work of a madman." + w_class = ITEMSIZE_LARGE diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index 66468890705..d614fc8eedd 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -301,6 +301,8 @@ ..() bitesize = 5 reagents.add_reagent("protein", 20) + reagents.add_reagent("tricordrazine", 5) + reagents.add_reagent("iron", 5) /obj/item/weapon/reagent_containers/food/snacks/cuttlefish name = "raw cuttlefish" @@ -338,7 +340,7 @@ /obj/item/weapon/reagent_containers/food/snacks/monkfishraw/Initialize() ..() - bitesize = 0.5 + bitesize = 1.5 /obj/item/weapon/reagent_containers/food/snacks/monkfishfillet name = "monkfish fillet" diff --git a/icons/obj/trash_vr.dmi b/icons/obj/trash_vr.dmi index 17004c289db..1088ca59c03 100644 Binary files a/icons/obj/trash_vr.dmi and b/icons/obj/trash_vr.dmi differ