Files
Aurora.3/code/modules/spells/storage.dm
Werner af16a489a6 Removes Weapons (#7415)
* Adds icon and hitsound where needed.

* Moves alt_attack to /obj/item and deletes weapons.dm

* Replaced /obj/item/weapon with /obj/item

* Fixes merge issues.

* Fix merge issues.
2019-11-16 18:36:13 +01: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/scrying(src)
new /obj/item/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/contract/boon/wizard/artificer(src)
new /obj/item/storage/belt/soulstone/full(src)