mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 12:41:46 +00:00
* LORE! * MORE LORE! * Update code/modules/hydroponics/gene_modder.dm Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Update krav_maga.dm * Update code/game/objects/items/weapons/cards_ids.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Update nuclearbomb.dm * Apply suggestions from code review Co-authored-by: Sheep <46016730+Scribble-Sheep@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * NAD * Update teleportation.dm * Update armor_suits.dm * Fixing some minor typos for cyborg upgrade flavour text Throws in some missing apostrophes, capitalisation, and the letter "s." * Briefcase Full of Cash buff Increases the amount of cash in the Syndicate Briefcase Full of Cash from 600 Cr to 1000 Cr * Reverts double-feature PR * Reverts a broken revert * Reverting again because Ebba told me to * And reverting yet again * Update robot_upgrades.dm * Apply suggestions from code review Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Update documents.dm * Update magboots.dm * very minor edits. * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * update * Update armor_suits.dm * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * format * Update code/modules/hydroponics/gene_modder.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> * Update defib.dm * Update armor_suits.dm * Apply suggestions from code review Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com> Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> --------- Signed-off-by: CRUNCH <143041327+Fordoxia@users.noreply.github.com> Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: Sheep <46016730+Scribble-Sheep@users.noreply.github.com> Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
89 lines
3.7 KiB
Plaintext
89 lines
3.7 KiB
Plaintext
/obj/item/documents
|
|
name = "secret documents"
|
|
desc = "Documents printed on special copy-protected paper."
|
|
icon = 'icons/obj/bureaucracy.dmi'
|
|
icon_state = "docs_generic"
|
|
item_state = "paper"
|
|
throwforce = 0
|
|
w_class = WEIGHT_CLASS_TINY
|
|
throw_range = 1
|
|
throw_speed = 1
|
|
pressure_resistance = 2
|
|
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
|
|
|
|
/obj/item/documents/Initialize(mapload)
|
|
. = ..()
|
|
RegisterSignal(src, COMSIG_PARENT_QDELETING, PROC_REF(alert_admins_on_destroy))
|
|
|
|
/obj/item/documents/nanotrasen
|
|
desc = "Nanotrasen documents printed on special copy-protected paper. They are filled with complex diagrams, technical documentation, and lists of names, dates, and coordinates."
|
|
icon_state = "docs_verified"
|
|
|
|
/obj/item/documents/nanotrasen/examine(mob/user)
|
|
. = ..()
|
|
. += "<span class='warning'>These documents are marked \"<b>TOP SECRET</b> - property of Nanotrasen\".</span>"
|
|
|
|
/obj/item/documents/syndicate
|
|
desc = "Documents printed on special copy-protected paper. They detail sensitive Syndicate operational intelligence."
|
|
|
|
/obj/item/documents/syndicate/red
|
|
name = "'Red' secret documents"
|
|
desc = "Documents printed on special copy-protected paper. They detail sensitive Syndicate operational intelligence."
|
|
icon_state = "docs_red"
|
|
|
|
/obj/item/documents/syndicate/red/examine(mob/user)
|
|
. = ..()
|
|
. += "<span class='warning'>These documents are marked with \"<b>TOP SECRET - RED</b>\" and the logo of the Syndicate.</span>"
|
|
|
|
/obj/item/documents/syndicate/blue
|
|
name = "'Blue' secret documents"
|
|
desc = "Documents printed on special copy-protected paper. They detail sensitive Syndicate operational intelligence."
|
|
icon_state = "docs_blue"
|
|
|
|
/obj/item/documents/syndicate/blue/examine(mob/user)
|
|
. = ..()
|
|
. += "<span class='warning'>These documents are marked with \"<b>TOP SECRET - BLUE</b>\" and the logo of the Syndicate.</span>"
|
|
|
|
/obj/item/documents/syndicate/yellow
|
|
name = "'Yellow' secret documents"
|
|
desc = "Documents printed on special copy-protected paper. They detail sensitive Syndicate operational intelligence."
|
|
icon_state = "docs_yellow"
|
|
resistance_flags = NONE
|
|
|
|
/obj/item/documents/syndicate/yellow/examine(mob/user)
|
|
. = ..()
|
|
. += "<span class='warning'>These documents are marked with \"<b>TOP SECRET - YELLOW</b>\" and the logo of the Syndicate.</span>"
|
|
|
|
/obj/item/documents/syndicate/yellow/trapped
|
|
desc = "Documents printed on special copy-protected paper. They detail sensitive Syndicate operational intelligence, and have a thin film of clear material covering their surface."
|
|
var/poison_type = "amanitin"
|
|
var/poison_dose = 20
|
|
var/poison_total = 60
|
|
|
|
/obj/item/documents/syndicate/mining
|
|
desc = "Documents detailing Syndicate plasma mining operations."
|
|
|
|
/obj/item/documents/syndicate/mining/examine(mob/user)
|
|
. = ..()
|
|
. += "<span class='warning'>These documents are marked with \"<b>SECRET</b>\" and the logo of the Syndicate.</span>"
|
|
|
|
/obj/item/documents/syndicate/yellow/trapped/pickup(user)
|
|
if(ishuman(user) && poison_total > 0)
|
|
var/mob/living/carbon/human/H = user
|
|
var/obj/item/clothing/gloves/G = H.gloves
|
|
if(!istype(G) || G.transfer_prints)
|
|
H.reagents.add_reagent(poison_type, poison_dose)
|
|
poison_total -= poison_dose
|
|
add_attack_logs(src, user, "Picked up [src], the trapped syndicate documents")
|
|
return ..()
|
|
|
|
/obj/item/documents/syndicate/dvorak_blackbox
|
|
name = "\improper D.V.O.R.A.K Blackbox Disk"
|
|
desc = "This disk contains a full record of all information that passed through D.V.O.R.A.K's systems during its uptime, not to mention what may have gone wrong. NT might be interested in this."
|
|
icon = 'icons/obj/module.dmi'
|
|
w_class = WEIGHT_CLASS_TINY
|
|
item_state = "card-id"
|
|
icon_state = "holodisk"
|
|
drop_sound = 'sound/items/handling/disk_drop.ogg'
|
|
pickup_sound = 'sound/items/handling/disk_pickup.ogg'
|