mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 03:49:10 +01:00
55045bc606
changes: - balance: "Dirty bomb cleanable 'greenglow' decal left behind is now actually radioactive to make it more persistently hazardous." - balance: "'Radioactive waste' rare Warehouse spawn submap now uses low-radioactivity variants for some of its contents and also been given a radioactive gear crate." - balance: "Adds increased taste_mult values to radioactive waste, napalm, and nitroglycerin; it should be noticeable if your drink is spiked with any of them." - balance: "Both uranium and radioactive waste reagents will create radioactive pools on the floor if spilled (uranium weak, radioactive waste medium/strong)." - balance: "Bombs are now allowed to be planted on any mob type except for carbons." - balance: "Increases the numbers of assemblies (signalers, igniters, etc.) stocked in vending machines." - rscadd: "Adds a radioactive waste chemical canister to the Uplink (5 tc)." - code_imp: "Adds additional variants of greenglow/radioactive decal and radioactive_waste/hazardous obj that are more or less radioactive for mapping and ST use." - code_imp: "Cleans up bomb timer setting code and admin logging." - qol: "Adds more examine hints to reagent dispensers." - qol: "Adds more examine hints to bombs." The 'radioactive waste chemical canister' item cost was set to 5 tc to match the other 'hazardous chemical' antag item, the Chlorine Tank.
67 lines
3.3 KiB
Plaintext
67 lines
3.3 KiB
Plaintext
// Chemical, Biological, Radiological ~~and Nuclear~~ Weapons
|
|
/datum/uplink_item/item/bioweapons
|
|
category = /datum/uplink_category/bioweapons
|
|
|
|
/datum/uplink_item/item/bioweapons/random_toxin
|
|
name = "Random Toxins Kit"
|
|
desc = "A kit that contains 3 vials containing random toxins. Comes with a syringe!"
|
|
telecrystal_cost = 1
|
|
path = /obj/item/storage/box/syndie_kit/toxin
|
|
|
|
/datum/uplink_item/item/bioweapons/nerveworms_kit
|
|
name = "Parasitic Worms Kit - Nerve Fluke"
|
|
desc = "Contains the eggs of a Nerve Fluke. Non-lethal but incapacitating."
|
|
telecrystal_cost = 3
|
|
path = /obj/item/storage/box/syndie_kit/nerveworms
|
|
|
|
/datum/uplink_item/item/bioweapons/heartworms_kit
|
|
name = "Parasitic Worms Kit - Heart Fluke"
|
|
desc = "Contains the eggs of a Heart Fluke. Lethal if left untreated."
|
|
telecrystal_cost = 5
|
|
path = /obj/item/storage/box/syndie_kit/heartworms
|
|
|
|
/datum/uplink_item/item/bioweapons/greimorians_kit
|
|
name = "Parasitic Eggs Kit - Greimorian Clade"
|
|
desc = "Contains the eggs of a Greimorian clade. Semi-lethal and incapacitating. Compatible with most sapient bipedal species (including Earth monkeys)."
|
|
telecrystal_cost = 4
|
|
path = /obj/item/storage/box/syndie_kit/greimorians
|
|
|
|
/datum/uplink_item/item/bioweapons/greimorian_eggcluster
|
|
name = "Greimorian Egg Cluster"
|
|
desc = "A cluster of greimorian eggs. (They will be planted at your feet on-purchase and CANNOT be moved, so make sure you're where you want them to be)"
|
|
telecrystal_cost = 4
|
|
path = /obj/effect/spider/eggcluster
|
|
|
|
/datum/uplink_item/item/bioweapons/radsuit
|
|
name = "Radiation Suit"
|
|
desc = "A kit containing a radiation suit. Complete with a geiger counter and one anti-radiation tablet."
|
|
telecrystal_cost = 1
|
|
bluecrystal_cost = 1
|
|
path = /obj/item/storage/box/syndie_kit/radsuit
|
|
|
|
/datum/uplink_item/item/bioweapons/dirtybomb
|
|
name = "Dirty Bomb"
|
|
desc = "A small explosive laced with radium. The explosion is small, but the radioactivity will affect a large area for a while (10 minutes approx). After this initial pulse decays, the area will remain slightly radioactive until cleaned/remediated."
|
|
telecrystal_cost = 4
|
|
path = /obj/item/plastique/dirty
|
|
|
|
/datum/uplink_item/item/bioweapons/radioactive_waste
|
|
name = "Radioactive Waste Canister"
|
|
desc = "A shielded chemical dispenser cartridge filled with radioactive waste. Splash a little (5-10 units) on a floor tile to leave a radioactive surprise. Inject a little (2-5 units) into someone's food or drink to rapidly debilitate them. Pairs delightfully with common spray bottle."
|
|
telecrystal_cost = 5
|
|
path = /obj/item/reagent_containers/chem_disp_cartridge/radioactive_waste
|
|
|
|
/datum/uplink_item/item/bioweapons/syringe_gun
|
|
name = "Syringe Gun Kit"
|
|
desc = "A kit containing a syringe gun and 3 disassembled darts. Fill a syringe, add it to a dart, then load into the rifle."
|
|
telecrystal_cost = 3
|
|
bluecrystal_cost = 3
|
|
path = /obj/item/storage/box/syndie_kit/syringe_gun
|
|
|
|
/datum/uplink_item/item/bioweapons/chlorine_tank
|
|
name = "Chlorine Gas Tank"
|
|
desc = "A Chlorine gas tank, a poisonous gas firstly mass produced on Earth for warfare uses, thanks to the research of Haber. At a premium, you can now wage \
|
|
your personal chemical warfare. Make sure the wind blows in the right direction, and wear the appropriate PPEs."
|
|
telecrystal_cost = 5
|
|
path = /obj/machinery/portable_atmospherics/canister/chlorine/antag
|