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

🆑
balance: War declaration gives 600 research points to the station
/🆑
This commit is contained in:
Andrew
2024-07-12 00:24:53 +02:00
committed by GitHub
parent 02707a1a7b
commit 3b97f15a0a
@@ -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()