diff --git a/code/game/objects/items/food/moth.dm b/code/game/objects/items/food/moth.dm index f9cc4098f1b..b2d9dfdb8fe 100644 --- a/code/game/objects/items/food/moth.dm +++ b/code/game/objects/items/food/moth.dm @@ -419,6 +419,7 @@ they do eventually go bad- prompting them to be sold as surplus by the fleet. This particular one is, like most artificially-flavoured moth food, mixed-herb flavoured." icon = 'icons/obj/food/moth.dmi' icon_state = "sustenance_bar" + trash_type = /obj/item/trash/fleet_ration food_reagents = list(/datum/reagent/consumable/nutriment = 20) tastes = list("herbs" = 1) foodtypes = VEGETABLES | GRAIN diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index ffca12c094f..ff540932f31 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -80,6 +80,11 @@ name = "energybar wrapper" icon_state = "energybar" +/obj/item/trash/fleet_ration + name = "surplus fleet wrapper" + desc = "In the Mothic Fleet every individual wrapper is carefully recycled and repurposed into fresh material. Over here they are more commonly dropped directly onto the floor." + icon_state = "moth_ration" + /obj/item/trash/waffles name = "waffles tray" icon_state = "waffles" diff --git a/icons/obj/food/moth.dmi b/icons/obj/food/moth.dmi index fd6db22c306..e3df78e65e6 100644 Binary files a/icons/obj/food/moth.dmi and b/icons/obj/food/moth.dmi differ diff --git a/icons/obj/service/janitor.dmi b/icons/obj/service/janitor.dmi index 454ad36f989..0e301808323 100644 Binary files a/icons/obj/service/janitor.dmi and b/icons/obj/service/janitor.dmi differ