mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 01:22:03 +00:00
* 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>
14 lines
405 B
Plaintext
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)
|