Files
Aurora.3/code/modules/spells/storage.dm
Lohikar 9a899801b1 more closet initialize (#2855)
Converts some closets to fill() that I missed in my first pass.
2017-06-28 14:37:42 +03:00

43 lines
1.8 KiB
Plaintext

/obj/structure/closet/wizard
name = "artifact closet"
desc = "a special lead lined closet used to hold artifacts of immense power."
icon = 'icons/obj/closet.dmi'
icon_state = "acloset"
icon_closed = "acloset"
icon_opened = "aclosetopen"
/obj/structure/closet/wizard/Initialize()
. = ..()
var/obj/structure/bigDelivery/package = new /obj/structure/bigDelivery(get_turf(src))
package.wrapped = src
package.examtext = "Imported straight from the Wizard Academy. Do not lose the contents or suffer a demerit."
src.forceMove(package)
package.update_icon()
/obj/structure/closet/wizard/armor
name = "mastercrafted armor set"
desc = "An artefact suit of armor that allows you to cast spells while providing more protection against attacks and the void of space."
/obj/structure/closet/wizard/armor/fill()
..()
new /obj/item/clothing/suit/space/void/wizard(src)
new /obj/item/clothing/head/helmet/space/void/wizard(src)
/obj/structure/closet/wizard/scrying
name = "scrying orb"
desc = "An incandescent orb of crackling energy, using it will allow you to ghost while alive, allowing you to spy upon the station with ease. In addition, buying it will permanently grant you x-ray vision."
/obj/structure/closet/wizard/scrying/fill()
..()
new /obj/item/weapon/scrying(src)
new /obj/item/weapon/contract/wizard/xray(src)
/obj/structure/closet/wizard/souls
name = "soul shard belt"
desc = "Soul Stone Shards are ancient tools capable of capturing and harnessing the spirits of the dead and dying. The spell Artificer allows you to create arcane machines for the captured souls to pilot. This also includes the spell Artificer, used to create the shells used in construct creation."
/obj/structure/closet/wizard/souls/fill()
..()
new /obj/item/weapon/contract/boon/wizard/artificer(src)
new /obj/item/weapon/storage/belt/soulstone/full(src)