Pilot NIFsoft Uploaders

This commit is contained in:
Casey
2022-07-20 13:23:38 -04:00
committed by CHOMPStation2
parent 259d1fd47d
commit a42e3e59e4
6 changed files with 49 additions and 1 deletions

View File

@@ -377,3 +377,32 @@
..()
for(var/i = 0 to 7)
new /obj/item/weapon/disk/nifsoft/mining(src)
// Pilot Disk //
/obj/item/weapon/disk/nifsoft/pilot
name = "NIFSoft Uploader - Pilot"
desc = "Contains free NIFSofts useful for pilot members.\n\
It has a small label: \n\
\"Portable NIFSoft Installation Media. \n\
Align ocular port with eye socket and depress red plunger.\""
icon_state = "pilot"
stored_organic = /datum/nifsoft/package/pilot
stored_synthetic = /datum/nifsoft/package/pilot_synth
/datum/nifsoft/package/pilot
software = list(/datum/nifsoft/spare_breath)
/datum/nifsoft/package/pilot_synth
software = list(/datum/nifsoft/pressure,/datum/nifsoft/heatsinks)
/obj/item/weapon/storage/box/nifsofts_pilot
name = "pilot nifsoft uploaders"
desc = "A box of free nifsofts for pilot employees."
icon = 'icons/obj/boxes.dmi'
icon_state = "nifsoft_kit_pilot"
/obj/item/weapon/storage/box/nifsofts_pilot/New()
..()
for(var/i = 0 to 7)
new /obj/item/weapon/disk/nifsoft/pilot(src)