mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-08 00:21:43 +00:00
* Adds CI for missing icon_states * yeah * more fixes * more fixes * seems good * moar * fix * yea * hrtyhrt * yeah * WOE * Removes some non-existant typepaths * yes
18 lines
579 B
Plaintext
18 lines
579 B
Plaintext
/datum/spell/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/expert_chef/cast(list/targets, mob/user = usr)
|
|
var/mob/living/carbon/human/H = targets[1]
|
|
H.expert_chef_knowledge()
|
|
|
|
/datum/spell/expert_chef/create_new_targeting()
|
|
return new /datum/spell_targeting/self
|