From 3b97f15a0ac8ec2d8dbed2e5792a9f92cceb80e4 Mon Sep 17 00:00:00 2001 From: Andrew Date: Fri, 12 Jul 2024 01:24:53 +0300 Subject: [PATCH] War declaration gives 600 research points (#84757) ## About The Pull Request Made the Nuke Ops war declaration give 600 points to the station tech web. ![image](https://github.com/tgstation/tgstation/assets/3625094/718a4341-771a-4125-a0e7-ac58adabf0cf) ## Why It's Good For The Game To let the station prepare more varied countermeasures. ## Changelog :cl: balance: War declaration gives 600 research points to the station /:cl: --- .../antagonists/nukeop/equipment/nuclear_challenge.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/antagonists/nukeop/equipment/nuclear_challenge.dm b/code/modules/antagonists/nukeop/equipment/nuclear_challenge.dm index a7611c24448..0160fbd8914 100644 --- a/code/modules/antagonists/nukeop/equipment/nuclear_challenge.dm +++ b/code/modules/antagonists/nukeop/equipment/nuclear_challenge.dm @@ -99,6 +99,13 @@ GLOBAL_LIST_EMPTY(jam_on_wardec) for(var/obj/machinery/computer/camera_advanced/shuttle_docker/dock as anything in GLOB.jam_on_wardec) dock.jammed = TRUE + var/datum/techweb/station_techweb = locate(/datum/techweb/science) in SSresearch.techwebs + if(station_techweb) + var/obj/machinery/announcement_system/announcement_system = pick(GLOB.announcement_systems) + if (!isnull(announcement_system)) + announcement_system.broadcast("Additional research data received from Nanotrasen R&D Division following the emergency protocol.", list(RADIO_CHANNEL_SCIENCE)) + station_techweb.add_point_list(list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_5_POINTS * 3)) + qdel(src) /obj/item/nuclear_challenge/proc/distribute_tc()