mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-01-02 13:33:29 +00:00
12 lines
519 B
Plaintext
12 lines
519 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
/// Food.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
/obj/item/weapon/reagent_containers/food
|
|
possible_transfer_amounts = null
|
|
volume = 50 //Sets the default container amount for all food items.
|
|
var/filling_color = "#FFFFFF" //Used by sandwiches.
|
|
|
|
/obj/item/weapon/reagent_containers/food/New()
|
|
..()
|
|
src.pixel_x = rand(-10.0, 10) //Randomizes postion
|
|
src.pixel_y = rand(-10.0, 10) |