The stairs grow more pitched and hazardous with each step. To each side, sheer walls rise up toward the arched ceiling, their surfaces covered with archaic sigils punctuated with pictographs. Many of these portray drakes, in a multitude of postures. |
Obvious exits: none |
Map: imt-pinefar-1264234799.png |
| | | | | | | | | |
Exit
|
Connecting Room
|
;e clear
put 'look'
loop {
line = get
if line =~ /a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall and a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall\./
if $3 == 'northern'
move 'climb steps'
elsif $6 == 'northern'
move 'climb second steps'
elsif $9 == 'northern'
move 'climb third steps'
elsif $12 == 'northern'
move 'climb fourth steps'
else
echo "error: unique_map_movements can't find the right steps"
exit
end
break
end
}
|
2647
|
;e clear
put 'look'
loop {
line = get
if line =~ /a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall and a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall\./
if $3 == 'southern'
move 'climb steps'
elsif $6 == 'southern'
move 'climb second steps'
elsif $9 == 'southern'
move 'climb third steps'
elsif $12 == 'southern'
move 'climb fourth steps'
else
echo "error: unique_map_movements can't find the right steps"
exit
end
break
end
}
|
2660
|
;e clear
put 'look'
loop {
line = get
if line =~ /a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall and a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall\./
if $3 == 'eastern'
move 'climb steps'
elsif $6 == 'eastern'
move 'climb second steps'
elsif $9 == 'eastern'
move 'climb third steps'
elsif $12 == 'eastern'
move 'climb fourth steps'
else
echo "error: unique_map_movements can't find the right steps"
exit
end
break
end
}
|
2659
|
;e clear
put 'look'
loop {
line = get
if line =~ /a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall, a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall and a flight of (ascending|descending) steps (curving along|leading straight through) the (northern|eastern|southern|western) wall\./
if $3 == 'western'
move 'climb steps'
elsif $6 == 'western'
move 'climb second steps'
elsif $9 == 'western'
move 'climb third steps'
elsif $12 == 'western'
move 'climb fourth steps'
else
echo "error: unique_map_movements.txt can't find the right steps"
exit
end
break
end
}
|
2661
|