12
13
14
15
16
17
18
19
20
21
|
# File 'lib/srs_game/tamera.rb', line 12
def main_room
main = L.new(:name => "the Main Room")
main.east = L.new(:name => "the East Room", :items => [I.new(:name => "Balla Ass Spoon")])
main.east.south = L.new(:name => "a creepy dungeon")
main.east.south.south = L.new(:name => "Hell") { |room| room.on_enter { rainbow_say "Welcome\nto\nHell!\n" * 8 } }
main.west = L.new(:name => "the West Room")
main.west.west = L.new(:name => "the Far West Room")
main.west.west.north = L.new(:name => "the North West Room")
main
end
|