mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-04 06:31:47 +00:00
29 lines
777 B
Plaintext
29 lines
777 B
Plaintext
/obj/effect/proc_holder/spell/targeted/genetic
|
|
name = "Genetic"
|
|
desc = "This spell inflicts a set of mutations and disabilities upon the target."
|
|
|
|
var/disabilities = 0 //bits
|
|
var/list/mutations = list() //mutation strings
|
|
var/duration = 100 //deciseconds
|
|
/*
|
|
Disabilities
|
|
1st bit - ?
|
|
2nd bit - ?
|
|
3rd bit - ?
|
|
4th bit - ?
|
|
5th bit - ?
|
|
6th bit - ?
|
|
*/
|
|
|
|
/obj/effect/proc_holder/spell/targeted/genetic/cast(list/targets)
|
|
|
|
for(var/mob/living/target in targets)
|
|
target.mutations.Add(mutations)
|
|
target.disabilities |= disabilities
|
|
target.update_mutations() //update target's mutation overlays
|
|
spawn(duration)
|
|
target.mutations.Remove(mutations)
|
|
target.disabilities &= ~disabilities
|
|
target.update_mutations()
|
|
|
|
return |