mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 05:30:05 +01:00
[MIRROR] Removes a couple instances of log_attack [MDB IGNORE] (#15119)
* Removes a couple instances of log_attack (#68542) removes a couple instances of log_attack Co-authored-by: tattle <article.disaster@ gmail.com> * Removes a couple instances of log_attack Co-authored-by: tattle <66640614+dragomagol@users.noreply.github.com> Co-authored-by: tattle <article.disaster@ gmail.com>
This commit is contained in:
co-authored by
tattle
tattle
parent
691c2b7e67
commit
4946f2f3d3
@@ -15,37 +15,35 @@
|
||||
var/list/add_mutations = list()
|
||||
var/list/remove_mutations = list()
|
||||
|
||||
var/used = 0
|
||||
var/used = FALSE
|
||||
|
||||
|
||||
/obj/item/dnainjector/attack_paw(mob/user, list/modifiers)
|
||||
return attack_hand(user, modifiers)
|
||||
|
||||
/obj/item/dnainjector/proc/inject(mob/living/carbon/M, mob/user)
|
||||
if(M.has_dna() && !HAS_TRAIT(M, TRAIT_GENELESS) && !HAS_TRAIT(M, TRAIT_BADDNA))
|
||||
var/log_msg = "[key_name(user)] injected [key_name(M)] with the [name]"
|
||||
for(var/HM in remove_mutations)
|
||||
M.dna.remove_mutation(HM)
|
||||
for(var/HM in add_mutations)
|
||||
if(HM == /datum/mutation/human/race)
|
||||
message_admins("[ADMIN_LOOKUPFLW(user)] injected [key_name_admin(M)] with the [name] [span_danger("(MONKEY)")]")
|
||||
log_msg += " (MONKEY)"
|
||||
if(M.dna.mutation_in_sequence(HM))
|
||||
M.dna.activate_mutation(HM)
|
||||
/obj/item/dnainjector/proc/inject(mob/living/carbon/target, mob/user)
|
||||
if(target.has_dna() && !HAS_TRAIT(target, TRAIT_GENELESS) && !HAS_TRAIT(target, TRAIT_BADDNA))
|
||||
for(var/removed_mutation in remove_mutations)
|
||||
target.dna.remove_mutation(removed_mutation)
|
||||
for(var/added_mutation in add_mutations)
|
||||
if(added_mutation == /datum/mutation/human/race)
|
||||
message_admins("[ADMIN_LOOKUPFLW(user)] injected [key_name_admin(target)] with the [name] [span_danger("(MONKEY)")]")
|
||||
if(target.dna.mutation_in_sequence(added_mutation))
|
||||
target.dna.activate_mutation(added_mutation)
|
||||
else
|
||||
M.dna.add_mutation(HM, MUT_EXTRA)
|
||||
target.dna.add_mutation(added_mutation, MUT_EXTRA)
|
||||
if(fields)
|
||||
if(fields["name"] && fields["UE"] && fields["blood_type"])
|
||||
M.real_name = fields["name"]
|
||||
M.dna.unique_enzymes = fields["UE"]
|
||||
M.name = M.real_name
|
||||
M.dna.blood_type = fields["blood_type"]
|
||||
target.real_name = fields["name"]
|
||||
target.dna.unique_enzymes = fields["UE"]
|
||||
target.name = target.real_name
|
||||
target.dna.blood_type = fields["blood_type"]
|
||||
if(fields["UI"]) //UI+UE
|
||||
M.dna.unique_identity = merge_text(M.dna.unique_identity, fields["UI"])
|
||||
target.dna.unique_identity = merge_text(target.dna.unique_identity, fields["UI"])
|
||||
if(fields["UF"])
|
||||
M.dna.unique_features = merge_text(M.dna.unique_features, fields["UF"])
|
||||
target.dna.unique_features = merge_text(target.dna.unique_features, fields["UF"])
|
||||
if(fields["UI"] || fields["UF"])
|
||||
M.updateappearance(mutcolor_update=1, mutations_overlay_update=1)
|
||||
log_attack("[log_msg] [loc_name(user)]")
|
||||
target.updateappearance(mutcolor_update = TRUE, mutations_overlay_update = TRUE)
|
||||
return TRUE
|
||||
return FALSE
|
||||
|
||||
@@ -78,451 +76,60 @@
|
||||
if(!inject(target, user)) //Now we actually do the heavy lifting.
|
||||
to_chat(user, span_notice("It appears that [target] does not have compatible DNA."))
|
||||
|
||||
used = 1
|
||||
used = TRUE
|
||||
icon_state = "dnainjector0"
|
||||
desc += " This one is used up."
|
||||
|
||||
|
||||
/obj/item/dnainjector/antihulk
|
||||
name = "\improper DNA injector (Anti-Hulk)"
|
||||
desc = "Cures green skin."
|
||||
remove_mutations = list(/datum/mutation/human/hulk)
|
||||
|
||||
/obj/item/dnainjector/hulkmut
|
||||
name = "\improper DNA injector (Hulk)"
|
||||
desc = "This will make you big and strong, but give you a bad skin condition."
|
||||
add_mutations = list(/datum/mutation/human/hulk)
|
||||
|
||||
/obj/item/dnainjector/xraymut
|
||||
name = "\improper DNA injector (X-ray)"
|
||||
desc = "Finally you can see what the Captain does."
|
||||
add_mutations = list(/datum/mutation/human/xray)
|
||||
|
||||
/obj/item/dnainjector/antixray
|
||||
name = "\improper DNA injector (Anti-X-ray)"
|
||||
desc = "It will make you see harder."
|
||||
remove_mutations = list(/datum/mutation/human/xray)
|
||||
|
||||
/////////////////////////////////////
|
||||
/obj/item/dnainjector/antiglasses
|
||||
name = "\improper DNA injector (Anti-Glasses)"
|
||||
desc = "Toss away those glasses!"
|
||||
remove_mutations = list(/datum/mutation/human/nearsight)
|
||||
|
||||
/obj/item/dnainjector/glassesmut
|
||||
name = "\improper DNA injector (Glasses)"
|
||||
desc = "Will make you need dorkish glasses."
|
||||
add_mutations = list(/datum/mutation/human/nearsight)
|
||||
|
||||
/obj/item/dnainjector/epimut
|
||||
name = "\improper DNA injector (Epi.)"
|
||||
desc = "Shake shake shake the room!"
|
||||
add_mutations = list(/datum/mutation/human/epilepsy)
|
||||
|
||||
/obj/item/dnainjector/antiepi
|
||||
name = "\improper DNA injector (Anti-Epi.)"
|
||||
desc = "Will fix you up from shaking the room."
|
||||
remove_mutations = list(/datum/mutation/human/epilepsy)
|
||||
////////////////////////////////////
|
||||
/obj/item/dnainjector/anticough
|
||||
name = "\improper DNA injector (Anti-Cough)"
|
||||
desc = "Will stop that awful noise."
|
||||
remove_mutations = list(/datum/mutation/human/cough)
|
||||
|
||||
/obj/item/dnainjector/coughmut
|
||||
name = "\improper DNA injector (Cough)"
|
||||
desc = "Will bring forth a sound of horror from your throat."
|
||||
add_mutations = list(/datum/mutation/human/cough)
|
||||
|
||||
/obj/item/dnainjector/antidwarf
|
||||
name = "\improper DNA injector (Anti-Dwarfism)"
|
||||
desc = "Helps you grow big and strong."
|
||||
remove_mutations = list(/datum/mutation/human/dwarfism)
|
||||
|
||||
/obj/item/dnainjector/dwarf
|
||||
name = "\improper DNA injector (Dwarfism)"
|
||||
desc = "It's a small world after all."
|
||||
add_mutations = list(/datum/mutation/human/dwarfism)
|
||||
|
||||
/obj/item/dnainjector/clumsymut
|
||||
name = "\improper DNA injector (Clumsy)"
|
||||
desc = "Makes clown minions."
|
||||
add_mutations = list(/datum/mutation/human/clumsy)
|
||||
|
||||
/obj/item/dnainjector/anticlumsy
|
||||
name = "\improper DNA injector (Anti-Clumsy)"
|
||||
desc = "Apply this for Security Clown."
|
||||
remove_mutations = list(/datum/mutation/human/clumsy)
|
||||
|
||||
/obj/item/dnainjector/antitour
|
||||
name = "\improper DNA injector (Anti-Tour.)"
|
||||
desc = "Will cure Tourette's."
|
||||
remove_mutations = list(/datum/mutation/human/tourettes)
|
||||
|
||||
/obj/item/dnainjector/tourmut
|
||||
name = "\improper DNA injector (Tour.)"
|
||||
desc = "Gives you a nasty case of Tourette's."
|
||||
add_mutations = list(/datum/mutation/human/tourettes)
|
||||
|
||||
/obj/item/dnainjector/stuttmut
|
||||
name = "\improper DNA injector (Stutt.)"
|
||||
desc = "Makes you s-s-stuttterrr."
|
||||
add_mutations = list(/datum/mutation/human/nervousness)
|
||||
|
||||
/obj/item/dnainjector/antistutt
|
||||
name = "\improper DNA injector (Anti-Stutt.)"
|
||||
desc = "Fixes that speaking impairment."
|
||||
remove_mutations = list(/datum/mutation/human/nervousness)
|
||||
|
||||
/obj/item/dnainjector/antifire
|
||||
name = "\improper DNA injector (Anti-Temp Adaptation)"
|
||||
desc = "Cures fire."
|
||||
remove_mutations = list(/datum/mutation/human/temperature_adaptation)
|
||||
|
||||
/obj/item/dnainjector/firemut
|
||||
name = "\improper DNA injector (Temp Adaptation)"
|
||||
desc = "Gives you fire."
|
||||
add_mutations = list(/datum/mutation/human/temperature_adaptation)
|
||||
|
||||
/obj/item/dnainjector/antipressure
|
||||
name = "\improper DNA injector (Anti-Pressure Adaptation)"
|
||||
desc = "Cures fire."
|
||||
remove_mutations = list(/datum/mutation/human/pressure_adaptation)
|
||||
|
||||
/obj/item/dnainjector/pressuremut
|
||||
name = "\improper DNA injector (Pressure Adaptation)"
|
||||
desc = "Gives you fire."
|
||||
add_mutations = list(/datum/mutation/human/pressure_adaptation)
|
||||
|
||||
/obj/item/dnainjector/blindmut
|
||||
name = "\improper DNA injector (Blind)"
|
||||
desc = "Makes you not see anything."
|
||||
add_mutations = list(/datum/mutation/human/blind)
|
||||
|
||||
/obj/item/dnainjector/antiblind
|
||||
name = "\improper DNA injector (Anti-Blind)"
|
||||
desc = "IT'S A MIRACLE!!!"
|
||||
remove_mutations = list(/datum/mutation/human/blind)
|
||||
|
||||
/obj/item/dnainjector/antitele
|
||||
name = "\improper DNA injector (Anti-Tele.)"
|
||||
desc = "Will make you not able to control your mind."
|
||||
remove_mutations = list(/datum/mutation/human/telekinesis)
|
||||
|
||||
/obj/item/dnainjector/telemut
|
||||
name = "\improper DNA injector (Tele.)"
|
||||
desc = "Super brain TK!"
|
||||
add_mutations = list(/datum/mutation/human/telekinesis)
|
||||
|
||||
/obj/item/dnainjector/telemut/darkbundle
|
||||
name = "\improper DNA injector"
|
||||
desc = "Good. Let the hate flow through you."
|
||||
|
||||
/obj/item/dnainjector/deafmut
|
||||
name = "\improper DNA injector (Deaf)"
|
||||
desc = "Sorry, what did you say?"
|
||||
add_mutations = list(/datum/mutation/human/deaf)
|
||||
|
||||
/obj/item/dnainjector/antideaf
|
||||
name = "\improper DNA injector (Anti-Deaf)"
|
||||
desc = "Will make you hear once more."
|
||||
remove_mutations = list(/datum/mutation/human/deaf)
|
||||
|
||||
/obj/item/dnainjector/h2m
|
||||
name = "\improper DNA injector (Human > Monkey)"
|
||||
desc = "Will make you a flea bag."
|
||||
add_mutations = list(/datum/mutation/human/race)
|
||||
|
||||
/obj/item/dnainjector/m2h
|
||||
name = "\improper DNA injector (Monkey > Human)"
|
||||
desc = "Will make you...less hairy."
|
||||
remove_mutations = list(/datum/mutation/human/race)
|
||||
|
||||
/obj/item/dnainjector/antichameleon
|
||||
name = "\improper DNA injector (Anti-Chameleon)"
|
||||
remove_mutations = list(/datum/mutation/human/chameleon)
|
||||
|
||||
/obj/item/dnainjector/chameleonmut
|
||||
name = "\improper DNA injector (Chameleon)"
|
||||
add_mutations = list(/datum/mutation/human/chameleon)
|
||||
|
||||
/obj/item/dnainjector/antiwacky
|
||||
name = "\improper DNA injector (Anti-Wacky)"
|
||||
remove_mutations = list(/datum/mutation/human/wacky)
|
||||
|
||||
/obj/item/dnainjector/wackymut
|
||||
name = "\improper DNA injector (Wacky)"
|
||||
add_mutations = list(/datum/mutation/human/wacky)
|
||||
|
||||
/obj/item/dnainjector/piglatinmut
|
||||
name = "\improper DNA injector (Pig Latin)"
|
||||
add_mutations = list(/datum/mutation/human/piglatin)
|
||||
|
||||
/obj/item/dnainjector/antipiglatin
|
||||
name = "\improper DNA injector (Anti-Pig Latin)"
|
||||
remove_mutations = list(/datum/mutation/human/piglatin)
|
||||
|
||||
/obj/item/dnainjector/antimute
|
||||
name = "\improper DNA injector (Anti-Mute)"
|
||||
remove_mutations = list(/datum/mutation/human/mute)
|
||||
|
||||
/obj/item/dnainjector/mutemut
|
||||
name = "\improper DNA injector (Mute)"
|
||||
add_mutations = list(/datum/mutation/human/mute)
|
||||
|
||||
/obj/item/dnainjector/unintelligiblemut
|
||||
name = "\improper DNA injector (Unintelligible)"
|
||||
add_mutations = list(/datum/mutation/human/unintelligible)
|
||||
|
||||
/obj/item/dnainjector/antiunintelligible
|
||||
name = "\improper DNA injector (Anti-Unintelligible)"
|
||||
remove_mutations = list(/datum/mutation/human/unintelligible)
|
||||
|
||||
/obj/item/dnainjector/swedishmut
|
||||
name = "\improper DNA injector (Swedish)"
|
||||
add_mutations = list(/datum/mutation/human/swedish)
|
||||
|
||||
/obj/item/dnainjector/antiswedish
|
||||
name = "\improper DNA injector (Anti-Swedish)"
|
||||
remove_mutations = list(/datum/mutation/human/swedish)
|
||||
|
||||
/obj/item/dnainjector/chavmut
|
||||
name = "\improper DNA injector (Chav)"
|
||||
add_mutations = list(/datum/mutation/human/chav)
|
||||
|
||||
/obj/item/dnainjector/antichav
|
||||
name = "\improper DNA injector (Anti-Chav)"
|
||||
remove_mutations = list(/datum/mutation/human/chav)
|
||||
|
||||
/obj/item/dnainjector/elvismut
|
||||
name = "\improper DNA injector (Elvis)"
|
||||
add_mutations = list(/datum/mutation/human/elvis)
|
||||
|
||||
/obj/item/dnainjector/antielvis
|
||||
name = "\improper DNA injector (Anti-Elvis)"
|
||||
remove_mutations = list(/datum/mutation/human/elvis)
|
||||
|
||||
/obj/item/dnainjector/lasereyesmut
|
||||
name = "\improper DNA injector (Laser Eyes)"
|
||||
add_mutations = list(/datum/mutation/human/laser_eyes)
|
||||
|
||||
/obj/item/dnainjector/antilasereyes
|
||||
name = "\improper DNA injector (Anti-Laser Eyes)"
|
||||
remove_mutations = list(/datum/mutation/human/laser_eyes)
|
||||
|
||||
/obj/item/dnainjector/void
|
||||
name = "\improper DNA injector (Void)"
|
||||
add_mutations = list(/datum/mutation/human/void)
|
||||
|
||||
/obj/item/dnainjector/antivoid
|
||||
name = "\improper DNA injector (Anti-Void)"
|
||||
remove_mutations = list(/datum/mutation/human/void)
|
||||
|
||||
/obj/item/dnainjector/antenna
|
||||
name = "\improper DNA injector (Antenna)"
|
||||
add_mutations = list(/datum/mutation/human/antenna)
|
||||
|
||||
/obj/item/dnainjector/antiantenna
|
||||
name = "\improper DNA injector (Anti-Antenna)"
|
||||
remove_mutations = list(/datum/mutation/human/antenna)
|
||||
|
||||
/obj/item/dnainjector/paranoia
|
||||
name = "\improper DNA injector (Paranoia)"
|
||||
add_mutations = list(/datum/mutation/human/paranoia)
|
||||
|
||||
/obj/item/dnainjector/antiparanoia
|
||||
name = "\improper DNA injector (Anti-Paranoia)"
|
||||
remove_mutations = list(/datum/mutation/human/paranoia)
|
||||
|
||||
/obj/item/dnainjector/mindread
|
||||
name = "\improper DNA injector (Mindread)"
|
||||
add_mutations = list(/datum/mutation/human/mindreader)
|
||||
|
||||
/obj/item/dnainjector/antimindread
|
||||
name = "\improper DNA injector (Anti-Mindread)"
|
||||
remove_mutations = list(/datum/mutation/human/mindreader)
|
||||
|
||||
/obj/item/dnainjector/radioactive
|
||||
name = "\improper DNA injector (Radioactive)"
|
||||
add_mutations = list(/datum/mutation/human/radioactive)
|
||||
|
||||
/obj/item/dnainjector/antiradioactive
|
||||
name = "\improper DNA injector (Anti-Radioactive)"
|
||||
remove_mutations = list(/datum/mutation/human/radioactive)
|
||||
|
||||
/obj/item/dnainjector/olfaction
|
||||
name = "\improper DNA injector (Olfaction)"
|
||||
add_mutations = list(/datum/mutation/human/olfaction)
|
||||
|
||||
/obj/item/dnainjector/antiolfaction
|
||||
name = "\improper DNA injector (Anti-Olfaction)"
|
||||
remove_mutations = list(/datum/mutation/human/olfaction)
|
||||
|
||||
/obj/item/dnainjector/insulated
|
||||
name = "\improper DNA injector (Insulated)"
|
||||
add_mutations = list(/datum/mutation/human/insulated)
|
||||
|
||||
/obj/item/dnainjector/antiinsulated
|
||||
name = "\improper DNA injector (Anti-Insulated)"
|
||||
remove_mutations = list(/datum/mutation/human/insulated)
|
||||
|
||||
/obj/item/dnainjector/shock
|
||||
name = "\improper DNA injector (Shock Touch)"
|
||||
add_mutations = list(/datum/mutation/human/shock)
|
||||
|
||||
/obj/item/dnainjector/antishock
|
||||
name = "\improper DNA injector (Anti-Shock Touch)"
|
||||
remove_mutations = list(/datum/mutation/human/shock)
|
||||
|
||||
/obj/item/dnainjector/spatialinstability
|
||||
name = "\improper DNA injector (Spatial Instability)"
|
||||
add_mutations = list(/datum/mutation/human/badblink)
|
||||
|
||||
/obj/item/dnainjector/antispatialinstability
|
||||
name = "\improper DNA injector (Anti-Spatial Instability)"
|
||||
remove_mutations = list(/datum/mutation/human/badblink)
|
||||
|
||||
/obj/item/dnainjector/acidflesh
|
||||
name = "\improper DNA injector (Acid Flesh)"
|
||||
add_mutations = list(/datum/mutation/human/acidflesh)
|
||||
|
||||
/obj/item/dnainjector/antiacidflesh
|
||||
name = "\improper DNA injector (Acid Flesh)"
|
||||
remove_mutations = list(/datum/mutation/human/acidflesh)
|
||||
|
||||
/obj/item/dnainjector/gigantism
|
||||
name = "\improper DNA injector (Gigantism)"
|
||||
add_mutations = list(/datum/mutation/human/gigantism)
|
||||
|
||||
/obj/item/dnainjector/antigigantism
|
||||
name = "\improper DNA injector (Anti-Gigantism)"
|
||||
remove_mutations = list(/datum/mutation/human/gigantism)
|
||||
|
||||
/obj/item/dnainjector/spastic
|
||||
name = "\improper DNA injector (Spastic)"
|
||||
add_mutations = list(/datum/mutation/human/spastic)
|
||||
|
||||
/obj/item/dnainjector/antispastic
|
||||
name = "\improper DNA injector (Anti-Spastic)"
|
||||
remove_mutations = list(/datum/mutation/human/spastic)
|
||||
|
||||
/obj/item/dnainjector/twoleftfeet
|
||||
name = "\improper DNA injector (Two Left Feet)"
|
||||
add_mutations = list(/datum/mutation/human/extrastun)
|
||||
|
||||
/obj/item/dnainjector/antitwoleftfeet
|
||||
name = "\improper DNA injector (Anti-Two Left Feet)"
|
||||
remove_mutations = list(/datum/mutation/human/extrastun)
|
||||
|
||||
/obj/item/dnainjector/geladikinesis
|
||||
name = "\improper DNA injector (Geladikinesis)"
|
||||
add_mutations = list(/datum/mutation/human/geladikinesis)
|
||||
|
||||
/obj/item/dnainjector/antigeladikinesis
|
||||
name = "\improper DNA injector (Anti-Geladikinesis)"
|
||||
remove_mutations = list(/datum/mutation/human/geladikinesis)
|
||||
|
||||
/obj/item/dnainjector/cryokinesis
|
||||
name = "\improper DNA injector (Cryokinesis)"
|
||||
add_mutations = list(/datum/mutation/human/cryokinesis)
|
||||
|
||||
/obj/item/dnainjector/anticryokinesis
|
||||
name = "\improper DNA injector (Anti-Cryokinesis)"
|
||||
remove_mutations = list(/datum/mutation/human/cryokinesis)
|
||||
|
||||
/obj/item/dnainjector/thermal
|
||||
name = "\improper DNA injector (Thermal Vision)"
|
||||
add_mutations = list(/datum/mutation/human/thermal)
|
||||
|
||||
/obj/item/dnainjector/antithermal
|
||||
name = "\improper DNA injector (Anti-Thermal Vision)"
|
||||
remove_mutations = list(/datum/mutation/human/thermal)
|
||||
|
||||
/obj/item/dnainjector/glow
|
||||
name = "\improper DNA injector (Glowy)"
|
||||
add_mutations = list(/datum/mutation/human/glow)
|
||||
|
||||
/obj/item/dnainjector/removeglow
|
||||
name = "\improper DNA injector (Anti-Glowy)"
|
||||
remove_mutations = list(/datum/mutation/human/glow)
|
||||
|
||||
/obj/item/dnainjector/antiglow
|
||||
name = "\improper DNA injector (Antiglowy)"
|
||||
add_mutations = list(/datum/mutation/human/glow/anti)
|
||||
|
||||
/obj/item/dnainjector/removeantiglow
|
||||
name = "\improper DNA injector (Anti-Antiglowy)"
|
||||
remove_mutations = list(/datum/mutation/human/glow/anti)
|
||||
|
||||
/obj/item/dnainjector/webbing
|
||||
name = "\improper DNA injector (Webbing)"
|
||||
add_mutations = list(/datum/mutation/human/webbing)
|
||||
|
||||
/obj/item/dnainjector/antiwebbing
|
||||
name = "\improper DNA injector (Anti-Webbing)"
|
||||
remove_mutations = list(/datum/mutation/human/webbing)
|
||||
|
||||
/obj/item/dnainjector/illiterate
|
||||
name = "\improper DNA injector (Illiterate)"
|
||||
add_mutations = list(/datum/mutation/human/illiterate)
|
||||
|
||||
/obj/item/dnainjector/antiilliterate
|
||||
name = "\improper DNA injector (Anti-Illiterate)"
|
||||
remove_mutations = list(/datum/mutation/human/illiterate)
|
||||
|
||||
/obj/item/dnainjector/timed
|
||||
var/duration = 600
|
||||
|
||||
/obj/item/dnainjector/timed/inject(mob/living/carbon/M, mob/user)
|
||||
if(M.stat == DEAD) //prevents dead people from having their DNA changed
|
||||
to_chat(user, span_notice("You can't modify [M]'s DNA while [M.p_theyre()] dead."))
|
||||
/obj/item/dnainjector/timed/inject(mob/living/carbon/target, mob/user)
|
||||
if(target.stat == DEAD) //prevents dead people from having their DNA changed
|
||||
to_chat(user, span_notice("You can't modify [target]'s DNA while [target.p_theyre()] dead."))
|
||||
return FALSE
|
||||
|
||||
if(M.has_dna() && !(HAS_TRAIT(M, TRAIT_BADDNA)))
|
||||
var/log_msg = "[key_name(user)] injected [key_name(M)] with the [name]"
|
||||
var/endtime = world.time+duration
|
||||
if(target.has_dna() && !(HAS_TRAIT(target, TRAIT_BADDNA)))
|
||||
var/endtime = world.time + duration
|
||||
for(var/mutation in remove_mutations)
|
||||
if(mutation == /datum/mutation/human/race)
|
||||
if(!ismonkey(M))
|
||||
if(!ismonkey(target))
|
||||
continue
|
||||
M = M.dna.remove_mutation(mutation)
|
||||
target = target.dna.remove_mutation(mutation)
|
||||
else
|
||||
M.dna.remove_mutation(mutation)
|
||||
target.dna.remove_mutation(mutation)
|
||||
for(var/mutation in add_mutations)
|
||||
if(M.dna.get_mutation(mutation))
|
||||
if(target.dna.get_mutation(mutation))
|
||||
continue //Skip permanent mutations we already have.
|
||||
if(mutation == /datum/mutation/human/race && !ismonkey(M))
|
||||
message_admins("[ADMIN_LOOKUPFLW(user)] injected [key_name_admin(M)] with the [name] [span_danger("(MONKEY)")]")
|
||||
log_msg += " (MONKEY)"
|
||||
M = M.dna.add_mutation(mutation, MUT_OTHER, endtime)
|
||||
if(mutation == /datum/mutation/human/race && !ismonkey(target))
|
||||
message_admins("[ADMIN_LOOKUPFLW(user)] injected [key_name_admin(target)] with the [name] [span_danger("(MONKEY)")]")
|
||||
target = target.dna.add_mutation(mutation, MUT_OTHER, endtime)
|
||||
else
|
||||
M.dna.add_mutation(mutation, MUT_OTHER, endtime)
|
||||
target.dna.add_mutation(mutation, MUT_OTHER, endtime)
|
||||
if(fields)
|
||||
if(fields["name"] && fields["UE"] && fields["blood_type"])
|
||||
if(!M.dna.previous["name"])
|
||||
M.dna.previous["name"] = M.real_name
|
||||
if(!M.dna.previous["UE"])
|
||||
M.dna.previous["UE"] = M.dna.unique_enzymes
|
||||
if(!M.dna.previous["blood_type"])
|
||||
M.dna.previous["blood_type"] = M.dna.blood_type
|
||||
M.real_name = fields["name"]
|
||||
M.dna.unique_enzymes = fields["UE"]
|
||||
M.name = M.real_name
|
||||
M.dna.blood_type = fields["blood_type"]
|
||||
M.dna.temporary_mutations[UE_CHANGED] = endtime
|
||||
if(!target.dna.previous["name"])
|
||||
target.dna.previous["name"] = target.real_name
|
||||
if(!target.dna.previous["UE"])
|
||||
target.dna.previous["UE"] = target.dna.unique_enzymes
|
||||
if(!target.dna.previous["blood_type"])
|
||||
target.dna.previous["blood_type"] = target.dna.blood_type
|
||||
target.real_name = fields["name"]
|
||||
target.dna.unique_enzymes = fields["UE"]
|
||||
target.name = target.real_name
|
||||
target.dna.blood_type = fields["blood_type"]
|
||||
target.dna.temporary_mutations[UE_CHANGED] = endtime
|
||||
if(fields["UI"]) //UI+UE
|
||||
if(!M.dna.previous["UI"])
|
||||
M.dna.previous["UI"] = M.dna.unique_identity
|
||||
M.dna.unique_identity = merge_text(M.dna.unique_identity, fields["UI"])
|
||||
M.dna.temporary_mutations[UI_CHANGED] = endtime
|
||||
if(!target.dna.previous["UI"])
|
||||
target.dna.previous["UI"] = target.dna.unique_identity
|
||||
target.dna.unique_identity = merge_text(target.dna.unique_identity, fields["UI"])
|
||||
target.dna.temporary_mutations[UI_CHANGED] = endtime
|
||||
if(fields["UF"]) //UI+UE
|
||||
if(!M.dna.previous["UF"])
|
||||
M.dna.previous["UF"] = M.dna.unique_features
|
||||
M.dna.unique_features = merge_text(M.dna.unique_features, fields["UF"])
|
||||
M.dna.temporary_mutations[UF_CHANGED] = endtime
|
||||
if(!target.dna.previous["UF"])
|
||||
target.dna.previous["UF"] = target.dna.unique_features
|
||||
target.dna.unique_features = merge_text(target.dna.unique_features, fields["UF"])
|
||||
target.dna.temporary_mutations[UF_CHANGED] = endtime
|
||||
if(fields["UI"] || fields["UF"])
|
||||
M.updateappearance(mutcolor_update=1, mutations_overlay_update=1)
|
||||
log_attack("[log_msg] [loc_name(user)]")
|
||||
target.updateappearance(mutcolor_update = TRUE, mutations_overlay_update = TRUE)
|
||||
return TRUE
|
||||
else
|
||||
return FALSE
|
||||
@@ -545,33 +152,410 @@
|
||||
var/filled = FALSE
|
||||
var/crispr_charge = FALSE // Look for viruses, look at symptoms, if research and Dormant DNA Activator or Viral Evolutionary Acceleration, set to true
|
||||
|
||||
/obj/item/dnainjector/activator/inject(mob/living/carbon/M, mob/user)
|
||||
if(M.has_dna() && !HAS_TRAIT(M, TRAIT_GENELESS) && !HAS_TRAIT(M, TRAIT_BADDNA))
|
||||
var/log_msg = "[key_name(user)] injected [key_name(M)] with the [name]"
|
||||
var/pref = ""
|
||||
var/suff = ""
|
||||
/obj/item/dnainjector/activator/inject(mob/living/carbon/target, mob/user)
|
||||
if(target.has_dna() && !HAS_TRAIT(target, TRAIT_GENELESS) && !HAS_TRAIT(target, TRAIT_BADDNA))
|
||||
for(var/mutation in add_mutations)
|
||||
var/datum/mutation/human/HM = mutation
|
||||
if(istype(HM, /datum/mutation/human))
|
||||
mutation = HM.type
|
||||
if(!M.dna.activate_mutation(HM))
|
||||
if(!doitanyway)
|
||||
log_msg += "(FAILED)"
|
||||
else
|
||||
M.dna.add_mutation(HM, MUT_EXTRA)
|
||||
pref = "expended"
|
||||
else if(research && M.client)
|
||||
var/datum/mutation/human/added_mutation = mutation
|
||||
if(istype(added_mutation, /datum/mutation/human))
|
||||
mutation = added_mutation.type
|
||||
if(!target.dna.activate_mutation(added_mutation))
|
||||
if(doitanyway)
|
||||
target.dna.add_mutation(added_mutation, MUT_EXTRA)
|
||||
else if(research && target.client)
|
||||
filled = TRUE
|
||||
pref = "filled"
|
||||
else
|
||||
pref = "expended"
|
||||
for(var/datum/disease/advance/disease in M.diseases)
|
||||
|
||||
for(var/datum/disease/advance/disease in target.diseases)
|
||||
for(var/datum/symptom/symp in disease.symptoms)
|
||||
if((symp.type == /datum/symptom/genetic_mutation)||(symp.type == /datum/symptom/viralevolution))
|
||||
crispr_charge = TRUE
|
||||
suff = (crispr_charge ? " with CRISPR charge" : "")
|
||||
log_msg += "([mutation])"
|
||||
name = "[pref] [name][suff]"
|
||||
log_attack("[log_msg] [loc_name(user)]")
|
||||
log_combat(user, target, "[!doitanyway ? "failed to inject" : "injected"]", "[src] ([mutation])[crispr_charge ? " with CRISPR charge" : ""]")
|
||||
return TRUE
|
||||
return FALSE
|
||||
|
||||
/// DNA INJECTORS
|
||||
|
||||
/obj/item/dnainjector/acidflesh
|
||||
name = "\improper DNA injector (Acid Flesh)"
|
||||
add_mutations = list(/datum/mutation/human/acidflesh)
|
||||
|
||||
/obj/item/dnainjector/antiacidflesh
|
||||
name = "\improper DNA injector (Acid Flesh)"
|
||||
remove_mutations = list(/datum/mutation/human/acidflesh)
|
||||
|
||||
/obj/item/dnainjector/antenna
|
||||
name = "\improper DNA injector (Antenna)"
|
||||
add_mutations = list(/datum/mutation/human/antenna)
|
||||
|
||||
/obj/item/dnainjector/antiantenna
|
||||
name = "\improper DNA injector (Anti-Antenna)"
|
||||
remove_mutations = list(/datum/mutation/human/antenna)
|
||||
|
||||
/obj/item/dnainjector/antiglow
|
||||
name = "\improper DNA injector (Antiglowy)"
|
||||
add_mutations = list(/datum/mutation/human/glow/anti)
|
||||
|
||||
/obj/item/dnainjector/removeantiglow
|
||||
name = "\improper DNA injector (Anti-Antiglowy)"
|
||||
remove_mutations = list(/datum/mutation/human/glow/anti)
|
||||
|
||||
/obj/item/dnainjector/blindmut
|
||||
name = "\improper DNA injector (Blind)"
|
||||
desc = "Makes you not see anything."
|
||||
add_mutations = list(/datum/mutation/human/blind)
|
||||
|
||||
/obj/item/dnainjector/antiblind
|
||||
name = "\improper DNA injector (Anti-Blind)"
|
||||
desc = "IT'S A MIRACLE!!!"
|
||||
remove_mutations = list(/datum/mutation/human/blind)
|
||||
|
||||
/obj/item/dnainjector/chameleonmut
|
||||
name = "\improper DNA injector (Chameleon)"
|
||||
add_mutations = list(/datum/mutation/human/chameleon)
|
||||
|
||||
/obj/item/dnainjector/antichameleon
|
||||
name = "\improper DNA injector (Anti-Chameleon)"
|
||||
remove_mutations = list(/datum/mutation/human/chameleon)
|
||||
|
||||
/obj/item/dnainjector/chavmut
|
||||
name = "\improper DNA injector (Chav)"
|
||||
add_mutations = list(/datum/mutation/human/chav)
|
||||
|
||||
/obj/item/dnainjector/antichav
|
||||
name = "\improper DNA injector (Anti-Chav)"
|
||||
remove_mutations = list(/datum/mutation/human/chav)
|
||||
|
||||
/obj/item/dnainjector/clumsymut
|
||||
name = "\improper DNA injector (Clumsy)"
|
||||
desc = "Makes clown minions."
|
||||
add_mutations = list(/datum/mutation/human/clumsy)
|
||||
|
||||
/obj/item/dnainjector/anticlumsy
|
||||
name = "\improper DNA injector (Anti-Clumsy)"
|
||||
desc = "Apply this for Security Clown."
|
||||
remove_mutations = list(/datum/mutation/human/clumsy)
|
||||
|
||||
/obj/item/dnainjector/coughmut
|
||||
name = "\improper DNA injector (Cough)"
|
||||
desc = "Will bring forth a sound of horror from your throat."
|
||||
add_mutations = list(/datum/mutation/human/cough)
|
||||
|
||||
/obj/item/dnainjector/anticough
|
||||
name = "\improper DNA injector (Anti-Cough)"
|
||||
desc = "Will stop that awful noise."
|
||||
remove_mutations = list(/datum/mutation/human/cough)
|
||||
|
||||
/obj/item/dnainjector/cryokinesis
|
||||
name = "\improper DNA injector (Cryokinesis)"
|
||||
add_mutations = list(/datum/mutation/human/cryokinesis)
|
||||
|
||||
/obj/item/dnainjector/anticryokinesis
|
||||
name = "\improper DNA injector (Anti-Cryokinesis)"
|
||||
remove_mutations = list(/datum/mutation/human/cryokinesis)
|
||||
|
||||
/obj/item/dnainjector/deafmut
|
||||
name = "\improper DNA injector (Deaf)"
|
||||
desc = "Sorry, what did you say?"
|
||||
add_mutations = list(/datum/mutation/human/deaf)
|
||||
|
||||
/obj/item/dnainjector/antideaf
|
||||
name = "\improper DNA injector (Anti-Deaf)"
|
||||
desc = "Will make you hear once more."
|
||||
remove_mutations = list(/datum/mutation/human/deaf)
|
||||
|
||||
/obj/item/dnainjector/dwarf
|
||||
name = "\improper DNA injector (Dwarfism)"
|
||||
desc = "It's a small world after all."
|
||||
add_mutations = list(/datum/mutation/human/dwarfism)
|
||||
|
||||
/obj/item/dnainjector/antidwarf
|
||||
name = "\improper DNA injector (Anti-Dwarfism)"
|
||||
desc = "Helps you grow big and strong."
|
||||
remove_mutations = list(/datum/mutation/human/dwarfism)
|
||||
|
||||
/obj/item/dnainjector/elvismut
|
||||
name = "\improper DNA injector (Elvis)"
|
||||
add_mutations = list(/datum/mutation/human/elvis)
|
||||
|
||||
/obj/item/dnainjector/antielvis
|
||||
name = "\improper DNA injector (Anti-Elvis)"
|
||||
remove_mutations = list(/datum/mutation/human/elvis)
|
||||
|
||||
/obj/item/dnainjector/epimut
|
||||
name = "\improper DNA injector (Epi.)"
|
||||
desc = "Shake shake shake the room!"
|
||||
add_mutations = list(/datum/mutation/human/epilepsy)
|
||||
|
||||
/obj/item/dnainjector/antiepi
|
||||
name = "\improper DNA injector (Anti-Epi.)"
|
||||
desc = "Will fix you up from shaking the room."
|
||||
remove_mutations = list(/datum/mutation/human/epilepsy)
|
||||
|
||||
/obj/item/dnainjector/geladikinesis
|
||||
name = "\improper DNA injector (Geladikinesis)"
|
||||
add_mutations = list(/datum/mutation/human/geladikinesis)
|
||||
|
||||
/obj/item/dnainjector/antigeladikinesis
|
||||
name = "\improper DNA injector (Anti-Geladikinesis)"
|
||||
remove_mutations = list(/datum/mutation/human/geladikinesis)
|
||||
|
||||
/obj/item/dnainjector/gigantism
|
||||
name = "\improper DNA injector (Gigantism)"
|
||||
add_mutations = list(/datum/mutation/human/gigantism)
|
||||
|
||||
/obj/item/dnainjector/antigigantism
|
||||
name = "\improper DNA injector (Anti-Gigantism)"
|
||||
remove_mutations = list(/datum/mutation/human/gigantism)
|
||||
|
||||
/obj/item/dnainjector/glassesmut
|
||||
name = "\improper DNA injector (Glasses)"
|
||||
desc = "Will make you need dorkish glasses."
|
||||
add_mutations = list(/datum/mutation/human/nearsight)
|
||||
|
||||
/obj/item/dnainjector/antiglasses
|
||||
name = "\improper DNA injector (Anti-Glasses)"
|
||||
desc = "Toss away those glasses!"
|
||||
remove_mutations = list(/datum/mutation/human/nearsight)
|
||||
|
||||
/obj/item/dnainjector/glow
|
||||
name = "\improper DNA injector (Glowy)"
|
||||
add_mutations = list(/datum/mutation/human/glow)
|
||||
|
||||
/obj/item/dnainjector/removeglow
|
||||
name = "\improper DNA injector (Anti-Glowy)"
|
||||
remove_mutations = list(/datum/mutation/human/glow)
|
||||
|
||||
/obj/item/dnainjector/hulkmut
|
||||
name = "\improper DNA injector (Hulk)"
|
||||
desc = "This will make you big and strong, but give you a bad skin condition."
|
||||
add_mutations = list(/datum/mutation/human/hulk)
|
||||
|
||||
/obj/item/dnainjector/antihulk
|
||||
name = "\improper DNA injector (Anti-Hulk)"
|
||||
desc = "Cures green skin."
|
||||
remove_mutations = list(/datum/mutation/human/hulk)
|
||||
|
||||
/obj/item/dnainjector/h2m
|
||||
name = "\improper DNA injector (Human > Monkey)"
|
||||
desc = "Will make you a flea bag."
|
||||
add_mutations = list(/datum/mutation/human/race)
|
||||
|
||||
/obj/item/dnainjector/m2h
|
||||
name = "\improper DNA injector (Monkey > Human)"
|
||||
desc = "Will make you...less hairy."
|
||||
remove_mutations = list(/datum/mutation/human/race)
|
||||
|
||||
/obj/item/dnainjector/illiterate
|
||||
name = "\improper DNA injector (Illiterate)"
|
||||
add_mutations = list(/datum/mutation/human/illiterate)
|
||||
|
||||
/obj/item/dnainjector/antiilliterate
|
||||
name = "\improper DNA injector (Anti-Illiterate)"
|
||||
remove_mutations = list(/datum/mutation/human/illiterate)
|
||||
|
||||
/obj/item/dnainjector/insulated
|
||||
name = "\improper DNA injector (Insulated)"
|
||||
add_mutations = list(/datum/mutation/human/insulated)
|
||||
|
||||
/obj/item/dnainjector/antiinsulated
|
||||
name = "\improper DNA injector (Anti-Insulated)"
|
||||
remove_mutations = list(/datum/mutation/human/insulated)
|
||||
|
||||
/obj/item/dnainjector/lasereyesmut
|
||||
name = "\improper DNA injector (Laser Eyes)"
|
||||
add_mutations = list(/datum/mutation/human/laser_eyes)
|
||||
|
||||
/obj/item/dnainjector/antilasereyes
|
||||
name = "\improper DNA injector (Anti-Laser Eyes)"
|
||||
remove_mutations = list(/datum/mutation/human/laser_eyes)
|
||||
|
||||
/obj/item/dnainjector/mindread
|
||||
name = "\improper DNA injector (Mindread)"
|
||||
add_mutations = list(/datum/mutation/human/mindreader)
|
||||
|
||||
/obj/item/dnainjector/antimindread
|
||||
name = "\improper DNA injector (Anti-Mindread)"
|
||||
remove_mutations = list(/datum/mutation/human/mindreader)
|
||||
|
||||
/obj/item/dnainjector/mutemut
|
||||
name = "\improper DNA injector (Mute)"
|
||||
add_mutations = list(/datum/mutation/human/mute)
|
||||
|
||||
/obj/item/dnainjector/antimute
|
||||
name = "\improper DNA injector (Anti-Mute)"
|
||||
remove_mutations = list(/datum/mutation/human/mute)
|
||||
|
||||
/obj/item/dnainjector/olfaction
|
||||
name = "\improper DNA injector (Olfaction)"
|
||||
add_mutations = list(/datum/mutation/human/olfaction)
|
||||
|
||||
/obj/item/dnainjector/antiolfaction
|
||||
name = "\improper DNA injector (Anti-Olfaction)"
|
||||
remove_mutations = list(/datum/mutation/human/olfaction)
|
||||
|
||||
/obj/item/dnainjector/piglatinmut
|
||||
name = "\improper DNA injector (Pig Latin)"
|
||||
add_mutations = list(/datum/mutation/human/piglatin)
|
||||
|
||||
/obj/item/dnainjector/antipiglatin
|
||||
name = "\improper DNA injector (Anti-Pig Latin)"
|
||||
remove_mutations = list(/datum/mutation/human/piglatin)
|
||||
|
||||
/obj/item/dnainjector/paranoia
|
||||
name = "\improper DNA injector (Paranoia)"
|
||||
add_mutations = list(/datum/mutation/human/paranoia)
|
||||
|
||||
/obj/item/dnainjector/antiparanoia
|
||||
name = "\improper DNA injector (Anti-Paranoia)"
|
||||
remove_mutations = list(/datum/mutation/human/paranoia)
|
||||
|
||||
/obj/item/dnainjector/pressuremut
|
||||
name = "\improper DNA injector (Pressure Adaptation)"
|
||||
desc = "Gives you fire."
|
||||
add_mutations = list(/datum/mutation/human/pressure_adaptation)
|
||||
|
||||
/obj/item/dnainjector/antipressure
|
||||
name = "\improper DNA injector (Anti-Pressure Adaptation)"
|
||||
desc = "Cures fire."
|
||||
remove_mutations = list(/datum/mutation/human/pressure_adaptation)
|
||||
|
||||
/obj/item/dnainjector/radioactive
|
||||
name = "\improper DNA injector (Radioactive)"
|
||||
add_mutations = list(/datum/mutation/human/radioactive)
|
||||
|
||||
/obj/item/dnainjector/antiradioactive
|
||||
name = "\improper DNA injector (Anti-Radioactive)"
|
||||
remove_mutations = list(/datum/mutation/human/radioactive)
|
||||
|
||||
/obj/item/dnainjector/shock
|
||||
name = "\improper DNA injector (Shock Touch)"
|
||||
add_mutations = list(/datum/mutation/human/shock)
|
||||
|
||||
/obj/item/dnainjector/antishock
|
||||
name = "\improper DNA injector (Anti-Shock Touch)"
|
||||
remove_mutations = list(/datum/mutation/human/shock)
|
||||
|
||||
/obj/item/dnainjector/spastic
|
||||
name = "\improper DNA injector (Spastic)"
|
||||
add_mutations = list(/datum/mutation/human/spastic)
|
||||
|
||||
/obj/item/dnainjector/antispastic
|
||||
name = "\improper DNA injector (Anti-Spastic)"
|
||||
remove_mutations = list(/datum/mutation/human/spastic)
|
||||
|
||||
/obj/item/dnainjector/spatialinstability
|
||||
name = "\improper DNA injector (Spatial Instability)"
|
||||
add_mutations = list(/datum/mutation/human/badblink)
|
||||
|
||||
/obj/item/dnainjector/antispatialinstability
|
||||
name = "\improper DNA injector (Anti-Spatial Instability)"
|
||||
remove_mutations = list(/datum/mutation/human/badblink)
|
||||
|
||||
/obj/item/dnainjector/stuttmut
|
||||
name = "\improper DNA injector (Stutt.)"
|
||||
desc = "Makes you s-s-stuttterrr."
|
||||
add_mutations = list(/datum/mutation/human/nervousness)
|
||||
|
||||
/obj/item/dnainjector/antistutt
|
||||
name = "\improper DNA injector (Anti-Stutt.)"
|
||||
desc = "Fixes that speaking impairment."
|
||||
remove_mutations = list(/datum/mutation/human/nervousness)
|
||||
|
||||
/obj/item/dnainjector/swedishmut
|
||||
name = "\improper DNA injector (Swedish)"
|
||||
add_mutations = list(/datum/mutation/human/swedish)
|
||||
|
||||
/obj/item/dnainjector/antiswedish
|
||||
name = "\improper DNA injector (Anti-Swedish)"
|
||||
remove_mutations = list(/datum/mutation/human/swedish)
|
||||
|
||||
/obj/item/dnainjector/telemut
|
||||
name = "\improper DNA injector (Tele.)"
|
||||
desc = "Super brain TK!"
|
||||
add_mutations = list(/datum/mutation/human/telekinesis)
|
||||
|
||||
/obj/item/dnainjector/telemut/darkbundle
|
||||
name = "\improper DNA injector"
|
||||
desc = "Good. Let the hate flow through you."
|
||||
|
||||
/obj/item/dnainjector/antitele
|
||||
name = "\improper DNA injector (Anti-Tele.)"
|
||||
desc = "Will make you not able to control your mind."
|
||||
remove_mutations = list(/datum/mutation/human/telekinesis)
|
||||
|
||||
/obj/item/dnainjector/firemut
|
||||
name = "\improper DNA injector (Temp Adaptation)"
|
||||
desc = "Gives you fire."
|
||||
add_mutations = list(/datum/mutation/human/temperature_adaptation)
|
||||
|
||||
/obj/item/dnainjector/antifire
|
||||
name = "\improper DNA injector (Anti-Temp Adaptation)"
|
||||
desc = "Cures fire."
|
||||
remove_mutations = list(/datum/mutation/human/temperature_adaptation)
|
||||
|
||||
/obj/item/dnainjector/thermal
|
||||
name = "\improper DNA injector (Thermal Vision)"
|
||||
add_mutations = list(/datum/mutation/human/thermal)
|
||||
|
||||
/obj/item/dnainjector/antithermal
|
||||
name = "\improper DNA injector (Anti-Thermal Vision)"
|
||||
remove_mutations = list(/datum/mutation/human/thermal)
|
||||
|
||||
/obj/item/dnainjector/tourmut
|
||||
name = "\improper DNA injector (Tour.)"
|
||||
desc = "Gives you a nasty case of Tourette's."
|
||||
add_mutations = list(/datum/mutation/human/tourettes)
|
||||
|
||||
/obj/item/dnainjector/antitour
|
||||
name = "\improper DNA injector (Anti-Tour.)"
|
||||
desc = "Will cure Tourette's."
|
||||
remove_mutations = list(/datum/mutation/human/tourettes)
|
||||
|
||||
/obj/item/dnainjector/twoleftfeet
|
||||
name = "\improper DNA injector (Two Left Feet)"
|
||||
add_mutations = list(/datum/mutation/human/extrastun)
|
||||
|
||||
/obj/item/dnainjector/antitwoleftfeet
|
||||
name = "\improper DNA injector (Anti-Two Left Feet)"
|
||||
remove_mutations = list(/datum/mutation/human/extrastun)
|
||||
|
||||
/obj/item/dnainjector/unintelligiblemut
|
||||
name = "\improper DNA injector (Unintelligible)"
|
||||
add_mutations = list(/datum/mutation/human/unintelligible)
|
||||
|
||||
/obj/item/dnainjector/antiunintelligible
|
||||
name = "\improper DNA injector (Anti-Unintelligible)"
|
||||
remove_mutations = list(/datum/mutation/human/unintelligible)
|
||||
|
||||
/obj/item/dnainjector/void
|
||||
name = "\improper DNA injector (Void)"
|
||||
add_mutations = list(/datum/mutation/human/void)
|
||||
|
||||
/obj/item/dnainjector/antivoid
|
||||
name = "\improper DNA injector (Anti-Void)"
|
||||
remove_mutations = list(/datum/mutation/human/void)
|
||||
|
||||
/obj/item/dnainjector/xraymut
|
||||
name = "\improper DNA injector (X-ray)"
|
||||
desc = "Finally you can see what the Captain does."
|
||||
add_mutations = list(/datum/mutation/human/xray)
|
||||
|
||||
/obj/item/dnainjector/antixray
|
||||
name = "\improper DNA injector (Anti-X-ray)"
|
||||
desc = "It will make you see harder."
|
||||
remove_mutations = list(/datum/mutation/human/xray)
|
||||
|
||||
/obj/item/dnainjector/wackymut
|
||||
name = "\improper DNA injector (Wacky)"
|
||||
add_mutations = list(/datum/mutation/human/wacky)
|
||||
|
||||
/obj/item/dnainjector/antiwacky
|
||||
name = "\improper DNA injector (Anti-Wacky)"
|
||||
remove_mutations = list(/datum/mutation/human/wacky)
|
||||
|
||||
/obj/item/dnainjector/webbing
|
||||
name = "\improper DNA injector (Webbing)"
|
||||
add_mutations = list(/datum/mutation/human/webbing)
|
||||
|
||||
/obj/item/dnainjector/antiwebbing
|
||||
name = "\improper DNA injector (Anti-Webbing)"
|
||||
remove_mutations = list(/datum/mutation/human/webbing)
|
||||
|
||||
@@ -33,7 +33,7 @@ All ShuttleMove procs go here
|
||||
M.stop_pulling()
|
||||
M.visible_message(span_warning("[shuttle] slams into [M]!"))
|
||||
SSblackbox.record_feedback("tally", "shuttle_gib", 1, M.type)
|
||||
log_attack("[key_name(M)] was shuttle gibbed by [shuttle].")
|
||||
log_shuttle("[key_name(M)] was shuttle gibbed by [shuttle].")
|
||||
M.gib()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user