mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-11 18:11:35 +00:00
* the rest of the fucking owl * OK hands need work but otherwise good * fuck time out fix vampire after * temporary codersprite do not merge this lmao * codersprite up * pause, time out * deploy the antimagic * Update code/__HELPERS/trait_helpers.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * Update code/datums/status_effects/buffs.dm Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> * Update code/game/gamemodes/wizard/magic_tarot.dm Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> --------- Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
18 lines
586 B
Plaintext
18 lines
586 B
Plaintext
/datum/spell/expert_chef
|
|
name = "Expert Chef Knowledge"
|
|
desc = "Find things you can cook with the items in reach."
|
|
clothes_req = FALSE
|
|
base_cooldown = 5 SECONDS
|
|
human_req = TRUE
|
|
antimagic_flags = NONE
|
|
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
|