mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
[MIRROR] HOT Paper Scooping ACTION: the SEQUEL (#7002)
Co-authored-by: Casey <a.roaming.shadow@gmail.com> Co-authored-by: CHOMPStation2 <chompsation2@gmail.com>
This commit is contained in:
@@ -59,11 +59,12 @@
|
||||
|
||||
return
|
||||
|
||||
/obj/item/weapon/clipboard/afterattack(turf/T as turf)
|
||||
/obj/item/weapon/clipboard/afterattack(turf/T as turf, mob/user as mob)
|
||||
for(var/obj/item/weapon/paper/P in T)
|
||||
P.loc = src
|
||||
toppaper = P
|
||||
update_icon()
|
||||
to_chat(user, "<span class='notice'>You clip the [P] onto \the [src].</span>")
|
||||
|
||||
/obj/item/weapon/clipboard/attack_self(mob/user as mob)
|
||||
var/dat = "<title>Clipboard</title>"
|
||||
|
||||
@@ -75,10 +75,11 @@
|
||||
name = "folder[(n_name ? text("- '[n_name]'") : null)]"
|
||||
return
|
||||
|
||||
/obj/item/weapon/folder/afterattack(turf/T as turf)
|
||||
/obj/item/weapon/folder/afterattack(turf/T as turf, mob/user as mob)
|
||||
for(var/obj/item/weapon/paper/P in T)
|
||||
P.loc = src
|
||||
update_icon()
|
||||
to_chat(user, "<span class='notice'>You tuck the [P] into \the [src].</span>")
|
||||
|
||||
/obj/item/weapon/folder/attack_self(mob/user as mob)
|
||||
var/dat = "<title>[name]</title>"
|
||||
|
||||
@@ -546,6 +546,18 @@
|
||||
tape.stick(src, user)
|
||||
return
|
||||
|
||||
if(istype(P, /obj/item/weapon/clipboard))
|
||||
var/obj/item/weapon/clipboard/CB = P
|
||||
src.loc = CB
|
||||
CB.toppaper = src
|
||||
CB.update_icon()
|
||||
to_chat(user, "<span class='notice'>You clip the [src] onto \the [CB].</span>")
|
||||
|
||||
if(istype(P, /obj/item/weapon/folder))
|
||||
src.loc = P
|
||||
P.update_icon()
|
||||
to_chat(user, "<span class='notice'>You tuck the [src] into \the [P].</span>")
|
||||
|
||||
if(istype(P, /obj/item/weapon/paper) || istype(P, /obj/item/weapon/photo))
|
||||
if (istype(P, /obj/item/weapon/paper/carbon))
|
||||
var/obj/item/weapon/paper/carbon/C = P
|
||||
|
||||
Reference in New Issue
Block a user