Files
Bubberstation/code/modules/hydroponics/beekeeping/honey_frame.dm
SkyratBot 2f552919c1 [MIRROR] Icons folder cleaning wave two [MDB IGNORE] (#22454)
* Icons folder cleaning wave two

* Merge conflict resolution

* Modular path hell

* hmm

* Update 2022-10.yml

* Another modular thing

---------

Co-authored-by: YesterdaysPromise <122572637+YesterdaysPromise@users.noreply.github.com>
Co-authored-by: Giz <vinylspiders@gmail.com>
2023-07-16 00:41:18 -04:00

14 lines
405 B
Plaintext

/obj/item/honey_frame
name = "honey frame"
desc = "A scaffold for bees to build honeycomb on."
icon = 'icons/obj/service/hydroponics/equipment.dmi'
icon_state = "honey_frame"
var/honeycomb_capacity = 10 //10 Honeycomb per frame by default, researchable frames perhaps?
/obj/item/honey_frame/Initialize(mapload)
. = ..()
pixel_x = base_pixel_x + rand(8, -8)
pixel_y = base_pixel_y + rand(8, -8)