mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-19 06:32:25 +00:00
Sprited/added the blue magus and red magus robes
The blue version functions as wizard robes and spawns on the wizard's shuttle, the red versions replace the old cultist robe sprites. Cultists now each start with join/blood/self instead of one random word each. Cultist supply talisman now has five uses and can spawn armor talismans. Updated the changelog git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2749 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -941,11 +941,13 @@ var/list/sacrificed = list()
|
||||
usr.whisper("N'ath reth sh'yro eth d'raggathnor!")
|
||||
usr.visible_message("\red Rune disappears with a flash of red light, and a set of armor appears on you..", \
|
||||
"\red You are blinded by the flash of red light! After you're able to see again, you see that you are now wearing a set of armor.")
|
||||
user.equip_if_possible(new /obj/item/clothing/shoes/jackboots(user), user.slot_shoes)
|
||||
user.equip_if_possible(new /obj/item/clothing/suit/cultrobes(user), user.slot_wear_suit)
|
||||
user.equip_if_possible(new /obj/item/clothing/head/culthood(user), user.slot_head)
|
||||
//user.equip_if_possible(new /obj/item/clothing/shoes/jackboots(user), user.slot_shoes)
|
||||
//user.equip_if_possible(new /obj/item/clothing/suit/cultrobes(user), user.slot_wear_suit)
|
||||
//user.equip_if_possible(new /obj/item/clothing/head/culthood(user), user.slot_head)
|
||||
//user.equip_if_possible(new /obj/item/clothing/gloves/black(user), user.slot_gloves)
|
||||
user.equip_if_possible(new /obj/item/clothing/suit/magusred(user), user.slot_wear_suit)
|
||||
user.equip_if_possible(new /obj/item/clothing/head/magus(user), user.slot_head)
|
||||
user.equip_if_possible(new /obj/item/weapon/melee/cultblade(user), user.slot_r_hand)
|
||||
user.equip_if_possible(new /obj/item/clothing/gloves/black(user), user.slot_gloves)
|
||||
user.equip_if_possible(new /obj/item/weapon/storage/backpack/cultpack(user), user.slot_back)
|
||||
del(src)
|
||||
return
|
||||
|
||||
@@ -71,6 +71,7 @@
|
||||
dat += "<A href='?src=\ref[src];rune=conceal'>Kla'atu barada nikt'o!</A> - Allows you to conceal the runes you placed on the floor.<BR>"
|
||||
dat += "<A href='?src=\ref[src];rune=communicate'>O bidai nabora se'sma!</A> - Allows you to coordinate with others of your cult.<BR>"
|
||||
dat += "<A href='?src=\ref[src];rune=runestun'>Fuu ma'jin</A> - Allows you to stun a person by attacking them with the talisman.<BR>"
|
||||
dat += "<A href='?src=\ref[src];rune=armor'>Sa tatha najin</A> - Allows you to summon armoured robes and an unholy blade<BR>"
|
||||
usr << browse(dat, "window=id_com;size=350x200")
|
||||
return
|
||||
|
||||
@@ -100,6 +101,9 @@
|
||||
if("runestun")
|
||||
var/obj/item/weapon/paper/talisman/T = new /obj/item/weapon/paper/talisman(get_turf(usr))
|
||||
T.imbue = "runestun"
|
||||
if("armor")
|
||||
var/obj/item/weapon/paper/talisman/T = new /obj/item/weapon/paper/talisman(get_turf(usr))
|
||||
T.imbue = "armor"
|
||||
src.uses--
|
||||
supply()
|
||||
return
|
||||
@@ -107,4 +111,4 @@
|
||||
|
||||
/obj/item/weapon/paper/talisman/supply
|
||||
imbue = "supply"
|
||||
uses = 3
|
||||
uses = 5
|
||||
Reference in New Issue
Block a user