mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-25 22:12:58 +01:00
Merge branch 'master' into placeholder
This commit is contained in:
@@ -41,11 +41,11 @@
|
||||
M.facing_dir = null
|
||||
M.update_canmove()
|
||||
else
|
||||
MA.anchored = TRUE
|
||||
MA.anchored = TRUE
|
||||
else
|
||||
return 0
|
||||
post_buckle(MA)
|
||||
MA.layer = src.layer + 1
|
||||
MA.layer = src.layer + 0.1
|
||||
return 1
|
||||
|
||||
/obj/proc/unbuckle()
|
||||
@@ -91,8 +91,8 @@
|
||||
"<span class='notice'>You hear metal clanking.</span>")
|
||||
else
|
||||
MA.visible_message(\
|
||||
"<span class='danger'>[MA.name] is buckled_to to [src] by [user.name]!</span>",\
|
||||
"<span class='danger'>You are buckled_to to [src] by [user.name]!</span>",\
|
||||
"<span class='danger'>[MA.name] is buckled to [src] by [user.name]!</span>",\
|
||||
"<span class='danger'>You are buckled to [src] by [user.name]!</span>",\
|
||||
"<span class='notice'>You hear metal clanking.</span>")
|
||||
|
||||
/obj/proc/user_unbuckle(mob/user)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//generic procs copied from obj/effect/alien
|
||||
/obj/effect/spider
|
||||
name = "web"
|
||||
desc = "It's stringy and sticky, eugh. Probably came from one of those giant spiders..."
|
||||
desc = "It's stringy and sticky, eugh. Probably came from one of those greimorians..."
|
||||
icon = 'icons/effects/effects.dmi'
|
||||
anchored = TRUE
|
||||
density = FALSE
|
||||
@@ -321,14 +321,14 @@
|
||||
qdel(O)
|
||||
|
||||
/obj/effect/decal/cleanable/spiderling_remains
|
||||
name = "spiderling remains"
|
||||
name = "greimorian larva remains"
|
||||
desc = "Green squishy mess."
|
||||
icon = 'icons/effects/effects.dmi'
|
||||
icon_state = "greenshatter"
|
||||
|
||||
/obj/effect/spider/cocoon
|
||||
name = "cocoon"
|
||||
desc = "Something wrapped in silky spider web"
|
||||
desc = "Something wrapped in silky greimorian web"
|
||||
icon_state = "cocoon1"
|
||||
health = 60
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
return prob(60)
|
||||
|
||||
var/obj/structure/bed/B = A
|
||||
if (istype(A, /obj/structure/bed) && B.buckled)//if it's a bed/chair and someone is buckled_to, it will not pass
|
||||
if (istype(A, /obj/structure/bed) && B.buckled)//if it's a bed/chair and someone is buckled, it will not pass
|
||||
return 0
|
||||
|
||||
if(istype(A, /obj/vehicle)) //no vehicles
|
||||
|
||||
@@ -157,8 +157,8 @@
|
||||
spawn(0)
|
||||
if(buckle(affecting))
|
||||
affecting.visible_message(\
|
||||
"<span class='danger'>[affecting.name] is buckled_to to [src] by [user.name]!</span>",\
|
||||
"<span class='danger'>You are buckled_to to [src] by [user.name]!</span>",\
|
||||
"<span class='danger'>[affecting.name] is buckled to [src] by [user.name]!</span>",\
|
||||
"<span class='danger'>You are buckled to [src] by [user.name]!</span>",\
|
||||
"<span class='notice'>You hear metal clanking.</span>")
|
||||
qdel(W)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user