mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
## About The Pull Request Moving from `attack` to `item_interaction` and `interact_with_atom` accidentally made these click CD free Which is probably a bad thing So I re-added click CDs to reagent container -> mob interactions that were converted. Reagent container -> item interactions have no CDs. ## Changelog 🆑 Melbert fix: Reagent container interactions with mobs have click cooldown again /🆑
91 lines
3.3 KiB
Plaintext
91 lines
3.3 KiB
Plaintext
/obj/item/reagent_containers/dropper
|
|
name = "dropper"
|
|
desc = "A dropper. Holds up to 5 units."
|
|
icon = 'icons/obj/medical/chemical.dmi'
|
|
icon_state = "dropper0"
|
|
inhand_icon_state = "dropper"
|
|
worn_icon_state = "pen"
|
|
amount_per_transfer_from_this = 5
|
|
possible_transfer_amounts = list(1, 2, 3, 4, 5)
|
|
volume = 5
|
|
initial_reagent_flags = TRANSPARENT
|
|
custom_price = PAYCHECK_CREW
|
|
|
|
/obj/item/reagent_containers/dropper/interact_with_atom(atom/target, mob/living/user, list/modifiers)
|
|
if(!target.reagents)
|
|
return NONE
|
|
|
|
if(reagents.total_volume > 0)
|
|
if(target.reagents.holder_full())
|
|
to_chat(user, span_notice("[target] is full."))
|
|
return ITEM_INTERACT_BLOCKING
|
|
|
|
if(!target.is_injectable(user))
|
|
to_chat(user, span_warning("You cannot transfer reagents to [target]!"))
|
|
return ITEM_INTERACT_BLOCKING
|
|
|
|
var/trans = 0
|
|
var/fraction = min(amount_per_transfer_from_this / reagents.total_volume, 1)
|
|
|
|
if(ismob(target))
|
|
user.changeNext_move(CLICK_CD_MELEE)
|
|
if(ishuman(target))
|
|
var/mob/living/carbon/human/victim = target
|
|
var/obj/item/safe_thing = victim.is_eyes_covered()
|
|
|
|
if(safe_thing)
|
|
if(!safe_thing.reagents)
|
|
safe_thing.create_reagents(100)
|
|
|
|
trans = round(reagents.trans_to(safe_thing, amount_per_transfer_from_this, transferred_by = user, methods = TOUCH), CHEMICAL_VOLUME_ROUNDING)
|
|
|
|
target.visible_message(span_danger("[user] tries to squirt something into [target]'s eyes, but fails!"), \
|
|
span_userdanger("[user] tries to squirt something into your eyes, but fails!"))
|
|
if(trans)
|
|
to_chat(user, span_notice("You transfer [trans] unit\s of the solution."))
|
|
update_appearance()
|
|
return ITEM_INTERACT_BLOCKING
|
|
|
|
else if(isalien(target)) //hiss-hiss has no eyes!
|
|
to_chat(target, span_danger("[target] does not seem to have any eyes!"))
|
|
return ITEM_INTERACT_BLOCKING
|
|
|
|
target.visible_message(
|
|
span_danger("[user] squirts something into [target]'s eyes!"),
|
|
span_userdanger("[user] squirts something into your eyes!"),
|
|
)
|
|
SEND_SIGNAL(target, COMSIG_MOB_REAGENTS_DROPPED_INTO_EYES, user, src, reagents, fraction)
|
|
reagents.expose(target, TOUCH, fraction)
|
|
var/mob/M = target
|
|
log_combat(user, M, "squirted", reagents.get_reagent_log_string())
|
|
|
|
trans = round(reagents.trans_to(target, amount_per_transfer_from_this, transferred_by = user), CHEMICAL_VOLUME_ROUNDING)
|
|
to_chat(user, span_notice("You transfer [trans] unit\s of the solution."))
|
|
update_appearance()
|
|
target.update_appearance()
|
|
return ITEM_INTERACT_SUCCESS
|
|
|
|
if(!target.is_drawable(user, FALSE)) //No drawing from mobs here
|
|
to_chat(user, span_warning("You cannot directly remove reagents from [target]!"))
|
|
return ITEM_INTERACT_BLOCKING
|
|
|
|
if(!target.reagents.total_volume)
|
|
to_chat(user, span_warning("[target] is empty!"))
|
|
return ITEM_INTERACT_BLOCKING
|
|
|
|
var/trans = round(target.reagents.trans_to(src, amount_per_transfer_from_this, transferred_by = user), CHEMICAL_VOLUME_ROUNDING)
|
|
|
|
to_chat(user, span_notice("You fill [src] with [trans] unit\s of the solution."))
|
|
|
|
update_appearance()
|
|
target.update_appearance()
|
|
return ITEM_INTERACT_SUCCESS
|
|
|
|
/obj/item/reagent_containers/dropper/update_overlays()
|
|
. = ..()
|
|
if(!reagents.total_volume)
|
|
return
|
|
var/mutable_appearance/filling = mutable_appearance('icons/obj/medical/reagent_fillings.dmi', "dropper")
|
|
filling.color = mix_color_from_reagents(reagents.reagent_list)
|
|
. += filling
|