mirror of
https://github.com/goonstation/goonstation-2016.git
synced 2026-05-20 23:45:37 +01:00
73 lines
2.4 KiB
Plaintext
73 lines
2.4 KiB
Plaintext
/obj/artifact/container
|
|
name = "artifact sealed container"
|
|
associated_datum = /datum/artifact/container
|
|
|
|
New(var/loc, var/forceartitype)
|
|
..()
|
|
|
|
ArtifactActivated(var/mob/living/user as mob)
|
|
var/datum/artifact/A = src.artifact
|
|
if (A.activated)
|
|
return
|
|
A.activated = 1
|
|
playsound(src.loc, A.activ_sound, 100, 1)
|
|
src.overlays += A.fx_image
|
|
src.visible_message("<b>[src] seems like it has something inside it...</b>")
|
|
switch(rand(1,4))
|
|
if(1)
|
|
if(prob(5))
|
|
new/obj/item/artifact/activator_key(src)
|
|
else
|
|
new/obj/item/cell/artifact(src)
|
|
new/obj/item/cell/artifact(src)
|
|
new/obj/item/cell/artifact(src)
|
|
if(2)
|
|
if(prob(5))
|
|
new/obj/critter/domestic_bee/buddy(src)
|
|
new/obj/item/clothing/suit/bee(src)
|
|
else
|
|
new/obj/critter/domestic_bee_larva(src)
|
|
new/obj/critter/domestic_bee_larva(src)
|
|
new/obj/critter/domestic_bee_larva(src)
|
|
new/obj/critter/domestic_bee_larva(src)
|
|
new/obj/critter/domestic_bee_larva(src)
|
|
if(3)
|
|
if(prob(5))
|
|
new/obj/item/gimmickbomb/owlclothes(src)
|
|
new/obj/item/gimmickbomb/owlclothes(src)
|
|
new/obj/item/gimmickbomb/owlclothes(src)
|
|
new/obj/item/gimmickbomb/owlclothes(src)
|
|
new/obj/item/gimmickbomb/owlclothes(src)
|
|
else
|
|
new/obj/item/gimmickbomb/owlclothes(src)
|
|
if(4)
|
|
new/obj/item/old_grenade/light_gimmick(src)
|
|
|
|
/datum/artifact/container
|
|
associated_object = /obj/artifact/container
|
|
rarity_class = 1
|
|
validtypes = list("ancient","martian","wizard","eldritch","precursor")
|
|
validtriggers = list(/datum/artifact_trigger/force,/datum/artifact_trigger/electric,/datum/artifact_trigger/heat,
|
|
/datum/artifact_trigger/radiation,/datum/artifact_trigger/carbon_touch,/datum/artifact_trigger/silicon_touch)
|
|
activ_text = "deposits its contents on the ground."
|
|
deact_text = "ceases functioning."
|
|
react_xray = list(7,50,40,11,"HOLLOW")
|
|
|
|
New()
|
|
..()
|
|
src.react_heat[2] = "HIGH INTERNAL CONVECTION"
|
|
|
|
effect_touch(var/obj/O,var/mob/living/user)
|
|
if (..())
|
|
return
|
|
for(var/obj/I in O.contents)
|
|
I.set_loc(O.loc)
|
|
for(var/mob/N in viewers(O, null))
|
|
N.flash(30)
|
|
if(N.client)
|
|
shake_camera(N, 6, 4)
|
|
O.visible_message("<span style=\"color:red\"><b>With a blinding light [O] vanishes, leaving its contents behind.</b></span>")
|
|
playsound(O.loc, "sound/effects/warp2.ogg", 50, 1)
|
|
artifact_controls.artifacts -= src
|
|
qdel(O)
|
|
return |