Section - Stasis Chambers
Understand "stasis chamber" as stasis chambers.
Instead of opening loose floor panel:
if loose floor panel is open:
say "The panel is already open!";
else:
say "You slide the panel from its place on the floor, revealing a set of valves.";
now loose floor panel is open.
After examining status screen:
progress Stas1Obj.
After examining valves:
progress Stas1Obj.
Instead of closing loose floor panel, say "You see no need to close the panel, you may need to access the valves later."
Open pressure valve is an action applying to nothing.
Understand "open valve" or "turn valve" or "override valve" or "override nano biotic" or "override nano-biotic" or "open nano-biotic valve" or "open nano biotic valve" as open pressure valve.
High pressure is an action applying to nothing.
Understand "set high" as high pressure.
Low pressure is an action applying to nothing.
Understand "set low" as low pressure.
Understand "valve" as valves.
Understand "pod/people/passengers" as pods.
Carry out high pressure:
if location of player is Life Support Subfloor:
if low pressure of status is false:
say "The pressure is already high!";
else:
say "The glow intensifies and activity in the as a tempest of activity erupts inside the cylinder. The readout now shows HIGH.";
now low pressure of status is false;
if flowing of valves is true:
say "[ln 1]An alarm goes off and you hear something mechanical slam above you. Presumably the safety valve just shut.";
regress stas3Obj;
now flowing of valves is false;
else:
say "You see no such thing.".
Carry out low pressure:
if location of player is Life Support Subfloor:
if low pressure of status is true:
say "The pressure is already low!";
else:
say "The glow becomes faint and activity in the cylinder dies down. The readout now shows LOW.";
progress stas2Obj;
now low pressure of status is true;
else:
say "You see no such thing.".
Carry out open pressure valve:
if location of player is Stasis:
if flowing of valves is true:
say "The valve is already open!";
else:
if low pressure of status is true:
say "The valve opens with a hiss, you can feel the pipes shiver as the nano-biotic begins to rush past. You can see the nano-biotic flowing around the nearby pods and it spreads quickly.";
progress stas4Obj;
now flowing of valves is true;
now fixed of Stasis is true;
else:
say "You twist the lever releasing the nano-biotic. The pipe begins to rattle as the nano-biotic surges through the system. The shuttering reaches a climax as a safety release valve bursts open showering you in nano-biotic. The valve slams shut, but not before you become covered in thick thick metallic paste. Reacting to the foreign material, the nano-biotic begins to digest you. It is slow and agonizing death.";
Reincarnate;
else:
say "You see no such thing.".