mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-23 18:56:38 +01:00
- spider webs / vines should never have been effects in the first place - spiderlings should probably just be mobs at some point lol --------- Co-authored-by: Zandario <zandarioh@gmail.com>
121 lines
4.1 KiB
Plaintext
121 lines
4.1 KiB
Plaintext
/obj/item/glass_jar
|
|
name = "glass jar"
|
|
desc = "A small empty jar."
|
|
icon = 'icons/obj/items.dmi'
|
|
icon_state = "jar"
|
|
w_class = WEIGHT_CLASS_SMALL
|
|
materials_base = list(MAT_GLASS = 200)
|
|
item_flags = ITEM_NO_BLUDGEON | ITEM_ENCUMBERS_WHILE_HELD
|
|
var/list/accept_mobs = list(/mob/living/simple_mob/animal/passive/lizard, /mob/living/simple_mob/animal/passive/mouse, /mob/living/simple_mob/animal/sif/leech, /mob/living/simple_mob/animal/sif/frostfly, /mob/living/simple_mob/animal/sif/glitterfly)
|
|
var/contains = 0 // 0 = nothing, 1 = money, 2 = animal, 3 = spiderling
|
|
drop_sound = 'sound/items/drop/glass.ogg'
|
|
pickup_sound = 'sound/items/pickup/glass.ogg'
|
|
|
|
/obj/item/glass_jar/Initialize(mapload)
|
|
. = ..()
|
|
update_icon()
|
|
|
|
/obj/item/glass_jar/afterattack(atom/target, mob/user, clickchain_flags, list/params)
|
|
if(!(clickchain_flags & CLICKCHAIN_HAS_PROXIMITY) || contains)
|
|
return
|
|
if(istype(target, /mob))
|
|
var/accept = 0
|
|
for(var/D in accept_mobs)
|
|
if(istype(target, D))
|
|
accept = 1
|
|
if(!accept)
|
|
to_chat(user, "[target] doesn't fit into \the [src].")
|
|
return
|
|
var/mob/L = target
|
|
user.visible_message("<span class='notice'>[user] scoops [L] into \the [src].</span>", "<span class='notice'>You scoop [L] into \the [src].</span>")
|
|
L.loc = src
|
|
contains = 2
|
|
update_icon()
|
|
return
|
|
else if(istype(target, /obj/structure/spider/spiderling))
|
|
var/obj/structure/spider/spiderling/S = target
|
|
user.visible_message("<span class='notice'>[user] scoops [S] into \the [src].</span>", "<span class='notice'>You scoop [S] into \the [src].</span>")
|
|
S.loc = src
|
|
STOP_PROCESSING(SSobj, S) // No growing inside jars
|
|
contains = 3
|
|
update_icon()
|
|
return
|
|
|
|
/obj/item/glass_jar/attack_self(mob/user, datum/event_args/actor/actor)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
switch(contains)
|
|
if(1)
|
|
for(var/obj/O in src)
|
|
O.forceMove(user.loc)
|
|
to_chat(user, "<span class='notice'>You take money out of \the [src].</span>")
|
|
contains = 0
|
|
update_icon()
|
|
return
|
|
if(2)
|
|
for(var/mob/M in src)
|
|
M.forceMove(user.loc)
|
|
user.visible_message("<span class='notice'>[user] releases [M] from \the [src].</span>", "<span class='notice'>You release [M] from \the [src].</span>")
|
|
contains = 0
|
|
update_icon()
|
|
return
|
|
if(3)
|
|
for(var/obj/structure/spider/spiderling/S in src)
|
|
S.forceMove(user.loc)
|
|
user.visible_message("<span class='notice'>[user] releases [S] from \the [src].</span>", "<span class='notice'>You release [S] from \the [src].</span>")
|
|
START_PROCESSING(SSobj, S) // They can grow after being let out though
|
|
contains = 0
|
|
update_icon()
|
|
return
|
|
|
|
/obj/item/glass_jar/attackby(var/obj/item/W, var/mob/user)
|
|
if(istype(W, /obj/item/spacecash))
|
|
if(contains == 0)
|
|
contains = 1
|
|
if(contains != 1)
|
|
return
|
|
if(!user.attempt_insert_item_for_installation(W, src))
|
|
return
|
|
var/obj/item/spacecash/S = W
|
|
user.visible_message("<span class='notice'>[user] puts [S.worth] [S.worth > 1 ? "thalers" : "thaler"] into \the [src].</span>")
|
|
update_icon()
|
|
|
|
/obj/item/glass_jar/update_icon() // Also updates name and desc
|
|
underlays.Cut()
|
|
cut_overlays()
|
|
. = ..()
|
|
switch(contains)
|
|
if(0)
|
|
name = initial(name)
|
|
desc = initial(desc)
|
|
if(1)
|
|
name = "tip jar"
|
|
desc = "A small jar with money inside."
|
|
for(var/obj/item/spacecash/S in src)
|
|
var/image/money = image(S.icon, S.icon_state)
|
|
money.pixel_x = rand(-2, 3)
|
|
money.pixel_y = rand(-6, 6)
|
|
money.transform *= 0.6
|
|
underlays += money
|
|
if(2)
|
|
for(var/mob/M in src)
|
|
var/image/victim = image(M.icon, M.icon_state)
|
|
victim.pixel_y = 6
|
|
victim.color = M.color
|
|
if(M.plane == ABOVE_LIGHTING_PLANE) // This will only show up on the ground sprite, due to the HuD being over it, so we need both images.
|
|
var/image/victim_glow = image(M.icon, M.icon_state)
|
|
victim_glow.pixel_y = 6
|
|
victim_glow.color = M.color
|
|
underlays += victim_glow
|
|
underlays += victim
|
|
name = "glass jar with [M]"
|
|
desc = "A small jar with [M] inside."
|
|
if(3)
|
|
for(var/obj/structure/spider/spiderling/S in src)
|
|
var/image/victim = image(S.icon, S.icon_state)
|
|
underlays += victim
|
|
name = "glass jar with [S]"
|
|
desc = "A small jar with [S] inside."
|
|
return
|