mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-10 08:54:15 +00:00
14 lines
358 B
Plaintext
14 lines
358 B
Plaintext
|
|
/obj/item/honey_frame
|
|
name = "honey frame"
|
|
desc = "A scaffold for bees to build honeycomb on."
|
|
icon = 'icons/obj/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()
|
|
. = ..()
|
|
pixel_x = rand(8,-8)
|
|
pixel_y = rand(8,-8)
|