mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-26 01:11:54 +00:00
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
/obj/effect/plant/HasProximity(var/atom/movable/AM)
|
|
|
|
if(!is_mature() || seed.get_trait(TRAIT_SPREAD) != 2)
|
|
return
|
|
|
|
var/mob/living/M = AM
|
|
if(!istype(M))
|
|
return
|
|
|
|
if(!buckled_mob && !M.buckled && !M.anchored && (M.small || prob(round(seed.get_trait(TRAIT_POTENCY)/6))))
|
|
//wait a tick for the Entered() proc that called HasProximity() to finish (and thus the moving animation),
|
|
//so we don't appear to teleport from two tiles away when moving into a turf adjacent to vines.
|
|
spawn(1)
|
|
entangle(M)
|
|
|
|
/obj/effect/plant/attack_hand(mob/user as mob)
|
|
// Todo, cause damage.
|
|
user_unbuckle_mob(user, user)
|
|
|
|
/obj/effect/plant/Crossed(var/mob/living/victim)
|
|
if(!is_mature())
|
|
return
|
|
if(!istype(victim))
|
|
return
|
|
var/target_limb = pick("r_foot","l_foot","r_leg","l_leg")
|
|
if(ishuman(victim))
|
|
var/mob/living/carbon/human/H = victim
|
|
if(H.shoes && prob(50)) //shoes will reduce chances of being stuck/stung by plants, but not always avoid it
|
|
return
|
|
seed.do_thorns(victim,src,target_limb)
|
|
seed.do_sting(victim,src,target_limb)
|
|
|
|
|
|
/obj/effect/plant/proc/entangle(var/mob/living/victim)
|
|
|
|
if(buckled_mob)
|
|
return
|
|
|
|
if(victim.buckled)
|
|
return
|
|
|
|
//grabbing people
|
|
if(!victim.anchored && Adjacent(victim) && victim.loc != get_turf(src))
|
|
var/can_grab = 1
|
|
if(istype(victim, /mob/living/carbon/human))
|
|
var/mob/living/carbon/human/H = victim
|
|
if(istype(H.shoes, /obj/item/clothing/shoes/magboots) && (H.shoes.flags & NOSLIP))
|
|
can_grab = 0
|
|
if(can_grab)
|
|
src.visible_message("<span class='danger'>Tendrils lash out from \the [src] and drag \the [victim] in!</span>")
|
|
victim.loc = src.loc
|
|
|
|
//entangling people
|
|
if(victim.loc == src.loc)
|
|
to_chat(victim, "<span class='danger'>Tendrils [pick("wind", "tangle", "tighten")] around you!</span>")
|
|
can_buckle = 1
|
|
buckle_mob(victim) |