Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
sexes = 0
ignored_by = list(/mob/living/simple_animal/hostile/faithless)
meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/shadow
species_traits = list(NOBLOOD,NOEYESPRITES,NOFLASH)
inherent_traits = list(TRAIT_RADIMMUNE,TRAIT_VIRUSIMMUNE,TRAIT_NOBREATH)
species_traits = list(NOBLOOD,NOEYESPRITES,NOFLASH,)
inherent_traits = list(TRAIT_RADIMMUNE,TRAIT_VIRUSIMMUNE,TRAIT_NOBREATH,TRAIT_GENELESS)
changesource_flags = MIRROR_BADMIN | WABBAJACK | MIRROR_PRIDE | MIRROR_MAGIC

mutanteyes = /obj/item/organ/eyes/night_vision
Expand Down
2 changes: 1 addition & 1 deletion yogstation/code/game/gamemodes/shadowling/shadowling.dm
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ Made by Xhuis
if(light_amount > LIGHT_DAM_THRESHOLD)
C.remove_movespeed_modifier(id)
else
C.add_movespeed_modifier(id, update=TRUE, priority=100, multiplicative_slowdown=-2, blacklisted_movetypes=(FLYING|FLOATING))
C.add_movespeed_modifier(id, update=TRUE, priority=100, multiplicative_slowdown=-1, blacklisted_movetypes=(FLYING|FLOATING))


/datum/species/shadow/ling/lesser //Empowered thralls. Obvious, but powerful
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
H.equip_to_slot_or_del(new /obj/item/clothing/suit/space/shadowling(H), SLOT_WEAR_SUIT)
H.equip_to_slot_or_del(new /obj/item/clothing/head/shadowling(H), SLOT_HEAD)
H.set_species(/datum/species/shadow/ling) //can't be a shadowling without being a shadowling
H.dna.remove_all_mutations(list(MUT_NORMAL, MUT_EXTRA), TRUE)
H.mind.RemoveSpell(src)
if(!do_mob(H,H,10,1))
return
Expand Down