mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Merge pull request #3124 from Aurorablade/BlameRegens
Fethas Carnival of horrors:OH GOD WHY
This commit is contained in:
@@ -639,13 +639,16 @@ var/global/list/multiverse = list()
|
||||
if(spooky_scaries.len >= 3 && !unlimited)
|
||||
user << "<span class='warning'>This artifact can only affect three undead at a time!</span>"
|
||||
return
|
||||
M.makeSkeleton()
|
||||
M.visible_message("<span class = 'warning'> A massive amount of flesh sloughs off [M] and a skeleton rises up!</span>")
|
||||
M.revive()
|
||||
if(heresy)
|
||||
spawnheresy(M)//oh god why
|
||||
else
|
||||
M.makeSkeleton()
|
||||
M.visible_message("<span class = 'warning'> A massive amount of flesh sloughs off [M] and a skeleton rises up!</span>")
|
||||
M.revive()
|
||||
equip_skeleton(M)
|
||||
spooky_scaries |= M
|
||||
M << "<span class='userdanger'>You have been revived by </span><B>[user.real_name]!</B>"
|
||||
M << "<span class='userdanger'>They are your master now, assist them even if it costs you your new life!</span>"
|
||||
equip_skeleton(M)
|
||||
desc = "A shard capable of resurrecting humans as skeleton thralls[unlimited ? "." : ", [spooky_scaries.len]/3 active thralls."]"
|
||||
|
||||
/obj/item/device/necromantic_stone/proc/check_spooky()
|
||||
@@ -667,10 +670,7 @@ var/global/list/multiverse = list()
|
||||
for(var/obj/item/I in H)
|
||||
H.unEquip(I)
|
||||
var/randomSpooky = "roman"//defualt
|
||||
if(heresy)
|
||||
randomSpooky = "yand"
|
||||
else
|
||||
randomSpooky = pick("roman","pirate","yand","clown")
|
||||
randomSpooky = pick("roman","pirate","yand","clown")
|
||||
|
||||
switch(randomSpooky)
|
||||
if("roman")
|
||||
@@ -708,6 +708,37 @@ var/global/list/multiverse = list()
|
||||
H.equip_to_slot_or_del(new /obj/item/weapon/shield/riot/roman(H), slot_l_hand)
|
||||
H.equip_to_slot_or_del(new /obj/item/weapon/twohanded/spear(H), slot_back)
|
||||
|
||||
/obj/item/device/necromantic_stone/proc/spawnheresy(mob/living/carbon/human/H as mob)
|
||||
H.set_species("Human")
|
||||
if (H.gender == MALE)
|
||||
H.change_gender(FEMALE)
|
||||
|
||||
var/list/anime_hair =list("Odango", "Kusanagi Hair", "Pigtails", "Hime Cut", "Floorlength Braid", "Ombre", "Twincurls", "Twincurls 2")
|
||||
H.change_hair(pick(anime_hair))
|
||||
|
||||
var/list/anime_hair_colours = list(list(216, 192, 120),
|
||||
list(140,170,74),list(0,0,0))
|
||||
|
||||
var/list/chosen_colour = pick(anime_hair_colours)
|
||||
H.change_hair_color(chosen_colour[1], chosen_colour[2], chosen_colour[3])
|
||||
|
||||
H.update_dna()
|
||||
H.update_body()
|
||||
|
||||
H.revive()
|
||||
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(H), slot_shoes)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/head/kitty(H), slot_head)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/under/schoolgirl(H), slot_w_uniform)
|
||||
H.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(H), slot_wear_suit)
|
||||
H.equip_to_slot_or_del(new /obj/item/weapon/katana(H), slot_r_hand)
|
||||
H.equip_to_slot_or_del(new /obj/item/weapon/shield/riot/roman(H), slot_l_hand)
|
||||
H.equip_to_slot_or_del(new /obj/item/weapon/twohanded/spear(H), slot_back)
|
||||
if(!H.real_name || H.real_name == "unknown")
|
||||
H.real_name = "Neko-chan"
|
||||
else
|
||||
H.real_name = "[H.name]-chan"
|
||||
H.say("NYA!~")
|
||||
|
||||
/obj/item/device/necromantic_stone/nya
|
||||
name = "nya-cromantic stone"
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
# Your name. Remove the quotation mark and put in your name when copy+pasting the example changelog.
|
||||
author: Fethas
|
||||
|
||||
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
|
||||
delete-after: True
|
||||
|
||||
# Any changes you've made. See valid prefix list above.
|
||||
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
|
||||
# SCREW THIS UP AND IT WON'T WORK.
|
||||
# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit.
|
||||
# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog.
|
||||
changes:
|
||||
- rscadd: "Due to Archmage Steve leaving the nya-cromantic stone near the microwave, the true power of the stone has been unleashed. Subjects of the stone are not only ressurected ... but resurrected as catgirls ... We fired steve."
|
||||
Reference in New Issue
Block a user