Module: Adventure

Defined in:
lib/lotrd/view/adventure.rb

Class Method Summary collapse

Class Method Details

.eventObject



16
17
18
19
20
# File 'lib/lotrd/view/adventure.rb', line 16

def event
    puts "#{::Events.adventure}"
    sleep(3)
    ::Town.menu
end

.startObject



8
9
10
11
12
13
14
# File 'lib/lotrd/view/adventure.rb', line 8

def start
    system 'clear'
		puts "Adventure" + "\n" + "=" * 40 + "\n"*2
    puts "You walk through the woods and hear a rustling sound ahead..."
    sleep(3)
    ::AdventureController.eventDecider
end