mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-28 02:21:53 +00:00
* Icons folder cleaning wave two * Merge conflict resolution * Modular path hell * hmm * Update 2022-10.yml * Another modular thing --------- Co-authored-by: YesterdaysPromise <122572637+YesterdaysPromise@users.noreply.github.com> Co-authored-by: Giz <vinylspiders@gmail.com>
41 lines
2.1 KiB
Plaintext
41 lines
2.1 KiB
Plaintext
/datum/martial_art/mushpunch
|
|
name = "Mushroom Punch"
|
|
id = MARTIALART_MUSHPUNCH
|
|
|
|
/datum/martial_art/mushpunch/harm_act(mob/living/A, mob/living/D)
|
|
var/atk_verb
|
|
to_chat(A, span_spiderbroodmother("You begin to wind up an attack..."))
|
|
if(!do_after(A, 2.5 SECONDS, target = D))
|
|
to_chat(A, span_spiderbroodmother("<b>Your attack was interrupted!</b>"))
|
|
return TRUE //martial art code was a mistake
|
|
A.do_attack_animation(D, ATTACK_EFFECT_PUNCH)
|
|
atk_verb = pick("punch", "smash", "crack")
|
|
D.visible_message(span_danger("[A] [atk_verb]ed [D] with such inhuman strength that it sends [D.p_them()] flying backwards!"), \
|
|
span_userdanger("You're [atk_verb]ed by [A] with such inhuman strength that it sends you flying backwards!"), span_hear("You hear a sickening sound of flesh hitting flesh!"), null, A)
|
|
to_chat(A, span_danger("You [atk_verb] [D] with such inhuman strength that it sends [D.p_them()] flying backwards!"))
|
|
D.apply_damage(rand(15,30), A.get_attack_type())
|
|
playsound(D, 'sound/effects/meteorimpact.ogg', 25, TRUE, -1)
|
|
var/throwtarget = get_edge_target_turf(A, get_dir(A, get_step_away(D, A)))
|
|
D.throw_at(throwtarget, 4, 2, A)//So stuff gets tossed around at the same time.
|
|
D.Paralyze(2 SECONDS)
|
|
if(atk_verb)
|
|
log_combat(A, D, "[atk_verb] (Mushroom Punch)")
|
|
return TRUE
|
|
|
|
/obj/item/mushpunch
|
|
name = "odd mushroom"
|
|
desc = "<I>Sapienza Ophioglossoides</I>:An odd mushroom from the flesh of a mushroom person. It has apparently retained some innate power of its owner, as it quivers with barely-contained POWER!"
|
|
icon = 'icons/obj/service/hydroponics/seeds.dmi'
|
|
icon_state = "mycelium-angel"
|
|
|
|
/obj/item/mushpunch/attack_self(mob/living/user)
|
|
if(!istype(user) || !user)
|
|
return
|
|
var/message = span_spiderbroodmother("You devour [src], and a confluence of skill and power from the mushroom enhances your punches! You do need a short moment to charge these powerful punches.")
|
|
to_chat(user, message)
|
|
var/datum/martial_art/mushpunch/mush = new(null)
|
|
mush.teach(user)
|
|
qdel(src)
|
|
visible_message(span_warning("[user] devours [src]."), \
|
|
span_notice("You devour [src]."))
|