Files
Aurora.3/code/modules/spells/storage.dm
Kaedwuff da9a9619bb No more magic shoes (#5336)
It's bugged me for a while that wizards rely on not just obviously mystical clothing, but wearing a special pair of utterly nonmagical sandals, or, in a singular special case, literal 'magic shoes'.

I've always felt magic clothing should be enough, honestly. I feel like the shoes thing was only added in the ancient past to give players the ability to shoot off a wizard's feet to take away their casting powers.

So I removed the footwear requirement. Now, wizards shall be free to wear whatever they want on their assorted leg appendages.

Feedback thread https://forums.aurorastation.org/viewtopic.php?f=18&t=11999
2018-10-27 20:29:58 +02: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)