mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-07 16:12:24 +00:00
348 lines
9.1 KiB
Plaintext
348 lines
9.1 KiB
Plaintext
/obj/item/weapon/dnainjector
|
|
name = "DNA-Injector"
|
|
desc = "This injects the person with DNA."
|
|
icon = 'items.dmi'
|
|
icon_state = "dnainjector"
|
|
var/dnatype = null
|
|
var/dna = null
|
|
var/block = null
|
|
var/owner = null
|
|
var/ue = null
|
|
var/s_time = 10.0
|
|
throw_speed = 1
|
|
throw_range = 5
|
|
w_class = 1.0
|
|
var/uses = 1
|
|
var/nofail
|
|
var/is_bullet = 0
|
|
|
|
/obj/item/weapon/dnainjector/attack_paw(mob/user as mob)
|
|
return attack_hand(user)
|
|
|
|
|
|
/obj/item/weapon/dnainjector/proc/inject(mob/M as mob)
|
|
M.radiation += rand(20,50)
|
|
|
|
if (!(M.mutations2 & NOCLONE)) // prevents drained people from having their DNA changed
|
|
if (dnatype == "ui")
|
|
if (!block) //isolated block?
|
|
if (ue) //unique enzymes? yes
|
|
M.dna.uni_identity = dna
|
|
updateappearance(M, M.dna.uni_identity)
|
|
M.real_name = ue
|
|
M.name = ue
|
|
M.dna.original_name = ue
|
|
uses--
|
|
else //unique enzymes? no
|
|
M.dna.uni_identity = dna
|
|
updateappearance(M, M.dna.uni_identity)
|
|
uses--
|
|
else
|
|
M.dna.uni_identity = setblock(M.dna.uni_identity,block,dna,3)
|
|
updateappearance(M, M.dna.uni_identity)
|
|
uses--
|
|
if (dnatype == "se")
|
|
if (!block) //isolated block?
|
|
M.dna.struc_enzymes = dna
|
|
domutcheck(M, null)
|
|
uses--
|
|
else
|
|
M.dna.struc_enzymes = setblock(M.dna.struc_enzymes,block,dna,3)
|
|
domutcheck(M, null,1)
|
|
uses--
|
|
|
|
spawn(0)//this prevents the collapse of space-time continuum
|
|
spawn(5)
|
|
usr.update_clothing()
|
|
del(src)
|
|
return uses
|
|
|
|
/obj/item/weapon/dnainjector/attack(mob/M as mob, mob/user as mob)
|
|
if (!istype(M, /mob))
|
|
return
|
|
if (!(istype(usr, /mob/living/carbon/human) || ticker) && ticker.mode.name != "monkey")
|
|
user << "\red You don't have the dexterity to do this!"
|
|
return
|
|
M.attack_log += text("\[[time_stamp()]\] <font color='orange'>Has been injected with [name] by [user.name] ([user.ckey])</font>")
|
|
user.attack_log += text("\[[time_stamp()]\] <font color='red'>Used the [name] to inject [M.name] ([M.ckey])</font>")
|
|
|
|
// log_attack("<font color='red'>[user.name] ([user.ckey]) used the [name] to inject [M.name] ([M.ckey])</font>")
|
|
|
|
if (user)
|
|
if (istype(M, /mob/living/carbon/human))
|
|
var/obj/effect/equip_e/human/O = new /obj/effect/equip_e/human( )
|
|
O.source = user
|
|
O.target = M
|
|
O.item = src
|
|
O.s_loc = user.loc
|
|
O.t_loc = M.loc
|
|
O.place = "dnainjector"
|
|
M.requests += O
|
|
if (dnatype == "se")
|
|
if (isblockon(getblock(dna, MONKEYBLOCK,3),MONKEYBLOCK) && istype(M, /mob/living/carbon/human))
|
|
message_admins("[key_name_admin(user)] injected [key_name_admin(M)] with the [name] \red(MONKEY)")
|
|
log_game("[key_name(user)] injected [key_name(M)] with the [name] (MONKEY)")
|
|
else
|
|
message_admins("[key_name_admin(user)] injected [key_name_admin(M)] with the [name]")
|
|
log_game("[key_name(user)] injected [key_name(M)] with the [name]")
|
|
else
|
|
message_admins("[key_name_admin(user)] injected [key_name_admin(M)] with the [name]")
|
|
log_game("[key_name(user)] injected [key_name(M)] with the [name]")
|
|
|
|
spawn( 0 )
|
|
O.process()
|
|
user.update_clothing()
|
|
return
|
|
else
|
|
for(var/mob/O in viewers(M, null))
|
|
O.show_message(text("\red [] has been injected with [] by [].", M, src, user), 1)
|
|
//Foreach goto(192)
|
|
if (!(istype(M, /mob/living/carbon/human) || istype(M, /mob/living/carbon/monkey)))
|
|
user << "\red Apparently it didn't work."
|
|
return
|
|
if (dnatype == "se")
|
|
if (isblockon(getblock(dna, 14,3),14) && istype(M, /mob/living/carbon/human))
|
|
message_admins("[key_name_admin(user)] injected [key_name_admin(M)] with the [name] \red(MONKEY)")
|
|
log_game("[key_name(user)] injected [key_name(M)] with the [name] (MONKEY)")
|
|
else
|
|
message_admins("[key_name_admin(user)] injected [key_name_admin(M)] with the [name]")
|
|
log_game("[key_name(user)] injected [key_name(M)] with the [name]")
|
|
else
|
|
message_admins("[key_name_admin(user)] injected [key_name_admin(M)] with the [name]")
|
|
log_game("[key_name(user)] injected [key_name(M)] with the [name]")
|
|
inject(M)//Now we actually do the heavy lifting.
|
|
/*
|
|
A user injecting themselves could mean their own transformation and deletion of mob.
|
|
I don't have the time to figure out how this code works so this will do for now.
|
|
I did rearrange things a bit.
|
|
*/
|
|
if(!isnull(user))//If the user still exists. Their mob may not.
|
|
user.show_message(text("\red You inject [M]"))
|
|
return
|
|
|
|
|
|
|
|
/obj/item/weapon/dnainjector/antihulk
|
|
name = "DNA-Injector (Anti-Hulk)"
|
|
desc = "Cures green skin."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 2
|
|
New()
|
|
..()
|
|
block = HULKBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/hulkmut
|
|
name = "DNA-Injector (Hulk)"
|
|
desc = "This will make you big and strong, but give you a bad skin condition."
|
|
dnatype = "se"
|
|
dna = "FED"
|
|
//block = 2
|
|
New()
|
|
..()
|
|
block = HULKBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/xraymut
|
|
name = "DNA-Injector (Xray)"
|
|
desc = "Finally you can see what the Captain does."
|
|
dnatype = "se"
|
|
dna = "FED"
|
|
//block = 8
|
|
New()
|
|
..()
|
|
block = XRAYBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/antixray
|
|
name = "DNA-Injector (Anti-Xray)"
|
|
desc = "It will make you see harder."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 8
|
|
New()
|
|
..()
|
|
block = XRAYBLOCK
|
|
|
|
/////////////////////////////////////
|
|
/obj/item/weapon/dnainjector/antiglasses
|
|
name = "DNA-Injector (Anti-Glasses)"
|
|
desc = "Toss away those glasses!"
|
|
dnatype = "se"
|
|
dna = "708"
|
|
block = 1
|
|
|
|
/obj/item/weapon/dnainjector/glassesmut
|
|
name = "DNA-Injector (Glasses)"
|
|
desc = "Will make you need dorkish glasses."
|
|
dnatype = "se"
|
|
dna = "BD6"
|
|
block = 1
|
|
|
|
/obj/item/weapon/dnainjector/epimut
|
|
name = "DNA-Injector (Epi.)"
|
|
desc = "Shake shake shake the room!"
|
|
dnatype = "se"
|
|
dna = "FA0"
|
|
block = 3
|
|
|
|
/obj/item/weapon/dnainjector/antiepi
|
|
name = "DNA-Injector (Anti-Epi.)"
|
|
desc = "Will fix you up from shaking the room."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
block = 3
|
|
////////////////////////////////////
|
|
/obj/item/weapon/dnainjector/anticough
|
|
name = "DNA-Injector (Anti-Cough)"
|
|
desc = "Will stop that aweful noise."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
block = 5
|
|
|
|
/obj/item/weapon/dnainjector/coughmut
|
|
name = "DNA-Injector (Cough)"
|
|
desc = "Will bring forth a sound of horror from your throat."
|
|
dnatype = "se"
|
|
dna = "BD6"
|
|
block = 5
|
|
|
|
/obj/item/weapon/dnainjector/clumsymut
|
|
name = "DNA-Injector (Clumsy)"
|
|
desc = "Makes clown minions."
|
|
dnatype = "se"
|
|
dna = "FA0"
|
|
//block = 6
|
|
New()
|
|
..()
|
|
block = CLUMSYBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/anticlumsy
|
|
name = "DNA-Injector (Anti-Clumy)"
|
|
desc = "Apply this for Security Clown."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 6
|
|
New()
|
|
..()
|
|
block = CLUMSYBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/antitour
|
|
name = "DNA-Injector (Anti-Tour.)"
|
|
desc = "Will cure tourrets."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
block = 7
|
|
|
|
/obj/item/weapon/dnainjector/tourmut
|
|
name = "DNA-Injector (Tour.)"
|
|
desc = "Gives you a nasty case off tourrets."
|
|
dnatype = "se"
|
|
dna = "BD6"
|
|
block = 7
|
|
|
|
/obj/item/weapon/dnainjector/stuttmut
|
|
name = "DNA-Injector (Stutt.)"
|
|
desc = "Makes you s-s-stuttterrr"
|
|
dnatype = "se"
|
|
dna = "FA0"
|
|
block = 9
|
|
|
|
/obj/item/weapon/dnainjector/antistutt
|
|
name = "DNA-Injector (Anti-Stutt.)"
|
|
desc = "Fixes that speaking impairment."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
block = 9
|
|
|
|
/obj/item/weapon/dnainjector/antifire
|
|
name = "DNA-Injector (Anti-Fire)"
|
|
desc = "Cures fire."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 10
|
|
New()
|
|
..()
|
|
block = FIREBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/firemut
|
|
name = "DNA-Injector (Fire)"
|
|
desc = "Gives you fire."
|
|
dnatype = "se"
|
|
dna = "FED"
|
|
//block = 10
|
|
New()
|
|
..()
|
|
block = FIREBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/blindmut
|
|
name = "DNA-Injector (Blind)"
|
|
desc = "Makes you not see anything."
|
|
dnatype = "se"
|
|
dna = "FA0"
|
|
//block = 11
|
|
New()
|
|
..()
|
|
block = BLINDBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/antiblind
|
|
name = "DNA-Injector (Anti-Blind)"
|
|
desc = "ITS A MIRACLE!!!"
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 11
|
|
New()
|
|
..()
|
|
block = BLINDBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/antitele
|
|
name = "DNA-Injector (Anti-Tele.)"
|
|
desc = "Will make you not able to control your mind."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 12
|
|
New()
|
|
..()
|
|
block = TELEBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/telemut
|
|
name = "DNA-Injector (Tele.)"
|
|
desc = "Super brain man!"
|
|
dnatype = "se"
|
|
dna = "FED"
|
|
//block = 12
|
|
New()
|
|
..()
|
|
block = TELEBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/deafmut
|
|
name = "DNA-Injector (Deaf)"
|
|
desc = "Sorry, what did you say?"
|
|
dnatype = "se"
|
|
dna = "FA0"
|
|
//block = 13
|
|
New()
|
|
..()
|
|
block = DEAFBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/antideaf
|
|
name = "DNA-Injector (Anti-Deaf)"
|
|
desc = "Will make you hear once more."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
//block = 13
|
|
New()
|
|
..()
|
|
block = DEAFBLOCK
|
|
|
|
/obj/item/weapon/dnainjector/h2m
|
|
name = "DNA-Injector (Human > Monkey)"
|
|
desc = "Will make you a flea bag."
|
|
dnatype = "se"
|
|
dna = "FA0"
|
|
block = 14
|
|
|
|
/obj/item/weapon/dnainjector/m2h
|
|
name = "DNA-Injector (Monkey > Human)"
|
|
desc = "Will make you...less hairy."
|
|
dnatype = "se"
|
|
dna = "708"
|
|
block = 14 |