mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-24 08:22:54 +00:00
Fixes issue 1118. duplicating trashbags Fixes issue 1117. evidence bag issues Syndie shuttle can now travel to mining and the tcomms sat. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5152 316c924e-a436-60f5-8080-3fe189b3f50e
73 lines
2.4 KiB
Plaintext
73 lines
2.4 KiB
Plaintext
/obj/item/weapon/trashbag
|
|
name = "trash bag"
|
|
desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"
|
|
icon = 'icons/obj/trash.dmi'
|
|
icon_state = "trashbag0"
|
|
item_state = "trashbag"
|
|
flags = FPRINT | TABLEPASS
|
|
slot_flags = SLOT_BELT
|
|
w_class = 4
|
|
var/mode = 1 //0 = pick one at a time, 1 = pick all on tile
|
|
var/capacity = 25 //the amount of trash it can carry.
|
|
|
|
/obj/item/weapon/trashbag/update_icon()
|
|
if(contents.len == 0)
|
|
icon_state = "trashbag0"
|
|
else if(contents.len < 12)
|
|
icon_state = "trashbag1"
|
|
else if(contents.len < 25)
|
|
icon_state = "trashbag2"
|
|
else icon_state = "trashbag3"
|
|
|
|
/obj/item/weapon/trashbag/attackby(obj/item/I as obj, mob/user as mob)
|
|
..()
|
|
if(contents.len < capacity)
|
|
if(istype(I, /obj/item))
|
|
if(I.w_class <= 2)
|
|
user.drop_item()
|
|
I.loc = src
|
|
else
|
|
user << "<span class='notice'>[src] is full!</span>"
|
|
|
|
/obj/item/weapon/trashbag/attack_self(mob/living/user as mob)
|
|
if(contents.len > 0)
|
|
for(var/obj/item/I in contents)
|
|
I.loc = user.loc
|
|
update_icon()
|
|
user << "<span class='notice'>You empty [src] onto [user.loc].</span>"
|
|
|
|
/obj/item/weapon/trashbag/afterattack(atom/target as mob|obj|turf|area, mob/user as mob|obj, flag)
|
|
if(istype(target, /obj/item))
|
|
var/obj/item/W = target
|
|
if(W.w_class <= 2)
|
|
if(mode == 1)
|
|
if(contents.len < capacity) //slightly redundant, but it makes it prettier in the chatbox. -Pete
|
|
user << "<span class='notice'>You pick up all the trash.</span>"
|
|
for(var/obj/item/O in get_turf(W))
|
|
if(istype(O, /obj/item/weapon/disk/nuclear)) continue //No nuke disks - Nodrak
|
|
if(contents.len < capacity)
|
|
if(O.w_class <= 2)
|
|
O.loc = src
|
|
else
|
|
user << "<span class='notice'>[src] is full!</span>"
|
|
break
|
|
else
|
|
user << "<span class='notice'>[src] is full!</span>"
|
|
else
|
|
if(istype(W, /obj/item/weapon/disk/nuclear)) return //No nuke disks - Nodrak
|
|
if(contents.len < capacity)
|
|
contents += W;
|
|
else
|
|
user << "<span class='notice'>[src] is full!</span>"
|
|
update_icon()
|
|
return
|
|
|
|
/obj/item/weapon/trashbag/verb/toggle_mode()
|
|
set name = "Switch Bag Method"
|
|
set category = "Object"
|
|
|
|
mode = !mode
|
|
if(mode == 1)
|
|
usr << "<span class='notice'>[src] now picks up all trash in a tile at once.</span>"
|
|
else
|
|
usr << "<span class='notice'>[src] now picks up one piece of trash at a time.</span>" |