mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-26 07:43:42 +01:00
3b351c8636
* chef buff * comments and crap * blam * revert * s34n review * last review * Reduced expert chef cooldown to 5s. * Renamed things for clarity. * Moved Expert Chef Knowledge to IC * Don't use a Oven, use an Oven. * Made kitchen machines less egotistical. * Gave Expert Chef Knowledge a spell. * Apply suggestions from code review Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Less demanding background. * Removed verb decoration and STATUS_USED_EXPERT_CHEF * Apply suggestions from code review Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: GDN <96800819+GDNgit@users.noreply.github.com> * Changed trait name. * Lint * Apply review comment. * Remove master-removed panel var * Update code/modules/mob/living/carbon/human/human_mob.dm Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> --------- Signed-off-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: FunnyMan3595 (Charlie Nolan) <funnyman@google.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: GDN <96800819+GDNgit@users.noreply.github.com>
18 lines
594 B
Plaintext
18 lines
594 B
Plaintext
/datum/spell/chef/expert_chef
|
|
name = "Expert Chef Knowledge"
|
|
desc = "Find things you can cook with the items in reach."
|
|
school = "chef"
|
|
clothes_req = FALSE
|
|
base_cooldown = 5 SECONDS
|
|
human_req = TRUE
|
|
action_icon_state = "chef"
|
|
action_background_icon_state = "bg_default"
|
|
still_recharging_msg = "All this thinking makes your head hurt, wait a bit longer."
|
|
|
|
/datum/spell/chef/expert_chef/cast(list/targets, mob/user = usr)
|
|
var/mob/living/carbon/human/H = targets[1]
|
|
H.expert_chef_knowledge()
|
|
|
|
/datum/spell/chef/expert_chef/create_new_targeting()
|
|
return new /datum/spell_targeting/self
|