mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
[Cult 3.0] Soul Blade fixes, new Cult Armor, Arcane Tattoos (#19921)
* cult tattoos * duh * I just like forgot most of the commits * coloured dagger * daazdazdaz
This commit is contained in:
@@ -543,6 +543,17 @@
|
||||
new_mob = M.change_mob_type( /mob/living/simple_animal/construct/wraith , null, null, delmob )
|
||||
if("shade")
|
||||
new_mob = M.change_mob_type( /mob/living/simple_animal/shade , null, null, delmob )
|
||||
if("soulblade")
|
||||
var/mob/living/simple_animal/shade/new_shade = M.change_mob_type( /mob/living/simple_animal/shade , null, null, delmob )
|
||||
var/obj/item/weapon/melee/soulblade/blade = new(get_turf(M))
|
||||
blade.blood = blade.maxblood
|
||||
new_shade.forceMove(blade)
|
||||
blade.update_icon()
|
||||
new_shade.status_flags |= GODMODE
|
||||
new_shade.canmove = 0
|
||||
new_shade.name = "Shade of [M.real_name]"
|
||||
new_shade.real_name = "Shade of [M.real_name]"
|
||||
new_shade.give_blade_powers()
|
||||
if("blob")
|
||||
var/obj/effect/blob/core/core = new(loc = get_turf(M), new_overmind = M.client)
|
||||
new_mob = core.overmind
|
||||
|
||||
Reference in New Issue
Block a user