mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-12 09:54:03 +00:00
12 lines
475 B
Plaintext
12 lines
475 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
/// Food.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/obj/item/weapon/reagent_containers/food
|
|
possible_transfer_amounts = list()
|
|
volume = 50 //Sets the default container amount for all food items.
|
|
burn_state = FLAMMABLE
|
|
|
|
/obj/item/weapon/reagent_containers/food/New()
|
|
..()
|
|
pixel_x = rand(-5, 5) //Randomizes postion slightly.
|
|
pixel_y = rand(-5, 5) |