
#include "defines.txt"

if (new_room) {
  load.pic(room_no);
  draw.pic(room_no);
  discard.pic(room_no);
  set.horizon(30);

  show.pic();

  if(v1==7) {
   position(ego,47,31);
   draw(ego);
  }

  if(v1==13) {
   position(ego,133,163);
   draw(ego);
  }

}


if (said("look")) {
  print("This is another section of the rock formation floating in this strange parallel universe.");
}

if (said("look","sky")) {
  print("If only your girlfriend was here, this'd be so romantic.");
  print("Just don't take the constant danger of horrible violent death into account.");
}

if(isset(f3)) {
  erase(ego);
  death_type=2;
}

if(v2==1) {
  new.room(7);
}

if(v2==3) {
  new.room(13);
}

return();
