|
| 1 | +/obj/item/paper/fluff/ruins/oldstation/ice/survivor_note |
| 2 | + name = "To those who find this" |
| 3 | + default_raw_text = "You can barely make out a faded message... <br><br>I come back to the outpost after a simple mining mission, and nobody is here. Well, they COULD have gone to cryo... I didn't really check. Doesn't matter, I have bigger issues now. There is something out there. \ |
| 4 | + I have no fucking idea what they are, all I know is that they don't like me. On occasion I hear them hissing and clawing on the airlock... good idea I barricaded the way in. Bad news: the transit tube is still broken, the damn engineers never fixed it. \ |
| 5 | + So basically, I'm stuck here until someone comes to rescue us. And I have no food or water. <br>If you're reading this, I'm probably dead. These things have taken over most of Delta station. \ |
| 6 | + Whatever you do, DON'T OPEN THE FIRELOCKS unless you have something to kill them. Look in security, maybe there might be some gear left in there. <br><br>So hungry... I don't want to go out like this..." |
| 7 | + |
| 8 | +/obj/item/paper/fluff/ruins/oldstation/ice/biolab_note_emergency |
| 9 | + name = "Diary note - Emergency" |
| 10 | + default_raw_text = "OH GOD, the outpost is still creaking from a heavy impact in the port direction. The power is down, coms not responding, the air supply pipe depressurized and I can feel the artificial gravity weakening. \ |
| 11 | + The whole department is running around in panic. I'll just pray that engineers get the TEG up and running.<br><br> ...And the alien spawn have broken out of the containment area due to the impact and slipped into the vent.<br><br> \ |
| 12 | + I have a bad feeling about this, but I doubt that now is the right time to make guys hunt for what they call my `pet cockroach`... And RD is scary..." |
| 13 | + |
| 14 | +/obj/item/paper/fluff/ruins/oldstation/ice |
| 15 | + name = "Cryo Awakening Alert" |
| 16 | + default_raw_text = "<B>**WARNING**</B><BR><BR>Catastrophic damage sustained to outpost. Powernet exhausted to reawaken crew.<BR><BR>Immediate Objectives<br><br>1: Activate emergency power generator<br>2: Lift station lockdown on the bridge<br><br>Please locate the 'Damage Report' on the bridge for a detailed situation report." |
| 17 | + |
| 18 | +/obj/item/paper/fluff/ruins/oldstation/ice/damagereport |
| 19 | + name = "Damage Report" |
| 20 | + default_raw_text = "<b>*Damage Report*</b><br><br><b>Alpha Station</b> - Destroyed<br><br><b>Beta Station</b> - Catastrophic Damage. Medical, destroyed. Atmospherics, partially destroyed.<br><br><b>Charlie Station</b> - Multiple asteroid impacts, no loss in air pressure.<br><br><b>Delta Station</b> - Intact. <b>WARNING</b>: Unknown force occupying Delta Station. Intent unknown. Species unknown. Numbers unknown.<br><br>Recommendation - Reestablish station powernet via thermoelectric generator. Reestablish station atmospherics system to restore air." |
| 21 | + |
| 22 | +/obj/item/paper/fluff/ruins/oldstation/ice/report |
| 23 | + name = "Crew Reawakening Report" |
| 24 | + default_raw_text = "Artificial Program's report to surviving crewmembers.<br><br>Crew were placed into cryostasis on March 10th, 2445.<br><br>Crew were awoken from cryostasis around June, 2557.<br><br> \ |
| 25 | + <b>SIGNIFICANT EVENTS OF NOTE</b><br>1: The primary radiation detectors were taken offline after 112 years due to power failure, secondary radiation detectors showed no residual \ |
| 26 | + radiation on the outpost. Deduction, primarily detector was malfunctioning and was producing a radiation signal when there was none.<br><br>2: A data burst from a nearby Nanotrasen Space \ |
| 27 | + Station was received, this data burst contained research data that has been uploaded to our RnD labs.<br><br>3: An unknown force has occupied Delta station. Additionally, a pack of wolves have \ |
| 28 | + taken refuge in the space surrounding all remaining stations, primarily Beta station." |
| 29 | + |
| 30 | +/datum/outfit/oldcargo |
| 31 | + name = "Alpha Station Cargo Technician" |
| 32 | + |
| 33 | + backpack_contents = list( |
| 34 | + /obj/item/boxcutter = 1, |
| 35 | + /obj/item/universal_scanner = 1, |
| 36 | + ) |
| 37 | + |
| 38 | + id = /obj/item/card/id/away/old/cargo |
| 39 | + id_trim = /datum/id_trim/job/away/old/cargo |
| 40 | + uniform = /obj/item/clothing/under/rank/cargo/tech |
| 41 | + ears = /obj/item/radio/headset/headset_old |
| 42 | + back = /obj/item/storage/backpack |
| 43 | + shoes = /obj/item/clothing/shoes/sneakers/black |
| 44 | + box = /obj/item/storage/box/survival |
| 45 | + |
| 46 | +/datum/outfit/oldcargo/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE) |
| 47 | + if(visualsOnly) |
| 48 | + return |
| 49 | + |
| 50 | + var/obj/item/radio/headset/R = H.ears |
| 51 | + R.set_frequency(FREQ_UNCOMMON) |
| 52 | + R.freqlock = RADIO_FREQENCY_LOCKED |
| 53 | + R.independent = TRUE |
| 54 | + var/obj/item/card/id/W = H.wear_id |
| 55 | + if(W) |
| 56 | + W.registered_name = H.real_name |
| 57 | + W.update_label() |
| 58 | + W.update_icon() |
| 59 | + ..() |
| 60 | + |
| 61 | +/obj/effect/mob_spawn/corpse/human/oldstation/cargo |
| 62 | + name = "Alpha Station Cargo Technician" |
| 63 | + outfit = /datum/outfit/oldcargo |
0 commit comments