mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 23:17:28 +01:00
20 lines
837 B
Plaintext
20 lines
837 B
Plaintext
/obj/item/reagent_containers/food/drinks/bluespace_coffee
|
|
name = "bluespace coffee"
|
|
desc = "Dreamt up in a strange feverish dream, this coffee cup seems to have been heavily modified with a variety of unlikely parts and wires, and never seems to run out of coffee. Truly the differance between madmen and genius is success."
|
|
icon = 'icons/obj/coffee.dmi'
|
|
icon_state = "bluespace_coffee"
|
|
center_of_mass_x = 15
|
|
center_of_mass_y = 10
|
|
volume = 50
|
|
max_transfer_amount = 50
|
|
|
|
/obj/item/reagent_containers/food/drinks/bluespace_coffee/Initialize(mapload)
|
|
. = ..()
|
|
reagents.add_reagent(REAGENT_ID_COFFEE, 50)
|
|
|
|
//Infinite Coffee
|
|
/obj/item/reagent_containers/food/drinks/bluespace_coffee/attack(mob/living/M, mob/living/user, target_zone, attack_modifier)
|
|
..()
|
|
reagents.add_reagent(REAGENT_ID_COFFEE, 50)
|
|
return ITEM_INTERACT_SUCCESS
|