"After putting your paw deep within the shelf you start feeling very unpleasant coldness coming from the tips of your fingers. Oof! You immediately pull out your paw.",
"The entire filling cabinet starts vibrating after opening this shelf. It does not bode well, you immediately close this shelf. The vibration stops. That was odd.",
"When opening the shelf you start hearing voice outside the closet, considering how well the doors are masking the sounds from the hallway they must be really close, perhaps they want to use the closet?\nIn panic you try to find some place to hide to no avail, there is not much space to begin with. You stand terrified until voice goes quiet. After sigh of relief you check the opened shelf, however there isn't anything in there other than various replacement parts to electronic devices.",
"You pull out a shelf and find a single piece of paper inside. It has only one sentence on it, in large font that fills entire page saying „OH, DID U GET THE BROOM CLOSET ENDING? THEB ROOM CLOSET ENDING WAS MY FAVRITE!1 XD”. The absolute lack of context and randomness of this message fill you with concern. Engineers must have a very strange sense of humor."
varcurrent_loot=null# TODO will not survive save/load
varcurrent_cabinet=null
func_init():
sceneID="EngRoomScene"
func_run():
if(state==""):
saynn("You hesitate, last time you walked this hallway you are sure that in this part the only thing you'll meet, if you continue walking, is a wall. This entire thing sounds dumb, and yet... It's a trust excercie, no? Realistically the worst thing that will happen is that you'll eventually hit a wall, doesn't sound like something you can't take.")
saynn("You decide to trust Pierre. You turn 90 degrees, take a deep breath and walk forward. Last time you went this corridor while not blind there was a wall here, an maybe this time...")
saynn("Four confidence in Pierre is rewarded with a loud bang on the wall. While your feet were the first to hit the wall, your head followed and... You hit the wall like a fool. Why would it work anyways, it's a solid wall.")
saynn("You decide to trust Pierre. You turn 90 degrees, take a deep breath and walk forward. Last time you went this corridor while not blind there was a wall here, an maybe this time...")
saynn("You hear a beep before you, a few screeching sounds. Holy shit, perhaps Pierre was onto something here? You continue walking, the atmosphere changes, the echo of your steps disappeared, the air is more dry and you start to feel claustrophobic. You cautiously drag your foot forward until it hits something seemingly metal. Have you reached your destination?")
addButton("Leave","Try to leave the room","leave")
ifstate=="leave":
if(GM.pc.isBlindfolded()):
if(GM.pc.hasBlockedHands()):
saynn("You attempt to retrace your setps back where you came from, however it seems like whatever you went through has closed. It's hard to judge how can you even open the doors. After a while of trying, you blast the doors with a serios of forceful pushes, it does not budge.")
processTime(7*60)
else:
saynn("You attempt to retrace your setps back where you came from, however it seems like whatever you went through has closed. Thankfully, it seems like from this end there is a very analog door handle that pulling seems to lead back to the hallway. Or at least you judge that from the sounds.")
processTime(4*60)
else:
processTime(2*60)
saynn("Thankfully, the doors have a regular old-school door handle. You pull it and they swing open.")
saynn("On the other side - curiously, completely flat wall texture. You close the doors and observe how this fit of engineering doors leading to ancient technology closet fits the wall so perfectly that it leaves no evidence of ever existing, not even a tiny crevice can be seen. Above the doors is a camera, maybe it opens the doors?")
aimCameraAndSetLocName("eng_corridor6")
GM.pc.setLocation("eng_corridor6")
addButton("Pierre","Guess it's time to go back to Pierre","endthescene")
addButton("Cabinets","Try to search cabinets","cabinets")
addButton("Leave","Try to leave the room","leave")
ifstate=="cabinets":
saynn("Within so many filling cabinets there are over 12 shelves. You could open some of them and see what's in them, however only one of them is really interesting to you.")# TODO placeholder
addButton("Back","Look around again","lookaround")
saynn("You chose to open cabinet number "+str(current_cabinet)+"...")
varfluidType=RNG.pick(["Cum","GirlCum","Milk"])
saynn("The shelf is located a little higher than your head, since there isn't anything in the closet that you could stand on, your plan is to simply open the shelf and try to feel with your paw if there is anything there. You regret that decision the moment you open the shelf. Entire shelf is filled to brim with a kind of cold slimy fluid that spills on you the moment you open it.\n\nYou've been covered in "+fluidType.to_lower()+".")
GM.pc.coverBodyWithFluid(fluidType,800.0)
ifstate=="cabinetevent2":
processTime(3*60)
saynn("You chose to open cabinet number "+str(current_cabinet)+"...")
saynn("The shelf is located a little higher than your head, since there isn't anything in the closet that you could stand on, your plan is to simply open the shelf and try to feel with your paw if there is anything there.\n\nYou pull the shelf and it falls on you!")
if(RNG.randf_range(0,1)<GM.pc.getDodgeChance()+0.1):# Got protected from the fall, base 10% + whatever player dodge chance has
saynn("You were able to avoid the falling shelf with your quick reflexes. Phew. You push the shelf back where it came from.")
else:
vardamage_taken:int=0
ifGM.pc.hasHorns():# I were curious, so I asked search engine about this, have some cool sciency read code reader masochist! https://bioengineering.hyperbook.mcgill.ca/mechanical-analysis-of-animal-horns/
saynn("You were unable to react in time and heavy shelf fell on your head ouch.\n"+("Seems like your horns helped you with taking a hit from the above to some degree.\n"ifGM.pc.hasHorns()else"")+"\nYou took "+str(damage_taken)+" damage.")
ifstate=="cabinetevent3":
processTime(3*60)
saynn("You chose to open cabinet number "+str(current_cabinet)+"...")
varlust_taken=RNG.randi_range(20,50)
GM.pc.addLust(lust_taken)
saynn("A red mist surrounds you as the dust from the shelf spills out with the force of your pull.\n\nYou gain "+str(lust_taken)+" lust.")