diff --git a/code/modules/hydroponics/grown/flowers.dm b/code/modules/hydroponics/grown/flowers.dm index 7f8b3dc14e..741bb4e23c 100644 --- a/code/modules/hydroponics/grown/flowers.dm +++ b/code/modules/hydroponics/grown/flowers.dm @@ -114,6 +114,8 @@ name = "sunflower" desc = "It's beautiful! A certain person might beat you to death if you trample these." icon_state = "sunflower" + lefthand_file = 'icons/mob/inhands/weapons/plants_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/plants_righthand.dmi' damtype = "fire" force = 0 slot_flags = SLOT_HEAD @@ -131,8 +133,12 @@ name = "pack of moonflower seeds" desc = "These seeds grow into moonflowers." icon_state = "seed-moonflower" + lefthand_file = 'icons/mob/inhands/misc/food_lefthand.dmi' + righthand_file = 'icons/mob/inhands/misc/food_righthand.dmi' species = "moonflower" plantname = "Moonflowers" + icon_grow = "moonflower-grow" + icon_dead = "sunflower-dead" product = /obj/item/reagent_containers/food/snacks/grown/moonflower mutatelist = list() reagents_add = list("moonshine" = 0.2, "vitamin" = 0.02, "nutriment" = 0.02) @@ -154,6 +160,8 @@ icon_state = "seed-novaflower" species = "novaflower" plantname = "Novaflowers" + icon_grow = "novaflower-grow" + icon_dead = "sunflower-dead" product = /obj/item/grown/novaflower mutatelist = list() reagents_add = list("condensedcapsaicin" = 0.25, "capsaicin" = 0.3, "nutriment" = 0) @@ -164,6 +172,8 @@ name = "novaflower" desc = "These beautiful flowers have a crisp smokey scent, like a summer bonfire." icon_state = "novaflower" + lefthand_file = 'icons/mob/inhands/weapons/plants_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/plants_righthand.dmi' damtype = "fire" force = 0 slot_flags = SLOT_HEAD diff --git a/icons/mob/inhands/misc/food_lefthand.dmi b/icons/mob/inhands/misc/food_lefthand.dmi index bdcccfc08b..081ac1227a 100644 Binary files a/icons/mob/inhands/misc/food_lefthand.dmi and b/icons/mob/inhands/misc/food_lefthand.dmi differ diff --git a/icons/mob/inhands/misc/food_righthand.dmi b/icons/mob/inhands/misc/food_righthand.dmi index b35ae67239..d2faffe175 100644 Binary files a/icons/mob/inhands/misc/food_righthand.dmi and b/icons/mob/inhands/misc/food_righthand.dmi differ diff --git a/icons/mob/inhands/weapons/plants_lefthand.dmi b/icons/mob/inhands/weapons/plants_lefthand.dmi index cd98323fe6..13275a77d6 100644 Binary files a/icons/mob/inhands/weapons/plants_lefthand.dmi and b/icons/mob/inhands/weapons/plants_lefthand.dmi differ diff --git a/icons/mob/inhands/weapons/plants_righthand.dmi b/icons/mob/inhands/weapons/plants_righthand.dmi index 6dd48d499e..910cf79866 100644 Binary files a/icons/mob/inhands/weapons/plants_righthand.dmi and b/icons/mob/inhands/weapons/plants_righthand.dmi differ diff --git a/icons/obj/hydroponics/growing_flowers.dmi b/icons/obj/hydroponics/growing_flowers.dmi index cceb749121..2752ad8dc5 100644 Binary files a/icons/obj/hydroponics/growing_flowers.dmi and b/icons/obj/hydroponics/growing_flowers.dmi differ diff --git a/icons/obj/hydroponics/harvest.dmi b/icons/obj/hydroponics/harvest.dmi index 0aff0a2cbd..0426b2f1f0 100644 Binary files a/icons/obj/hydroponics/harvest.dmi and b/icons/obj/hydroponics/harvest.dmi differ