Module: Lotrd
- Defined in:
- lib/lotrd.rb,
lib/lotrd/version.rb
Defined Under Namespace
Classes: Error
Constant Summary collapse
- VERSION =
"0.1.9"
Class Method Summary collapse
-
.start ⇒ Object
Your code goes here…
Class Method Details
.start ⇒ Object
Your code goes here…
10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/lotrd.rb', line 10 def self.start system 'clear' titleStyle = Artii::Base.new :font => 'slant' puts titleStyle.asciify(' Legend').colorize(:white) puts titleStyle.asciify(' Of The').colorize(:white) puts titleStyle.asciify(' Ruby').colorize(:red) puts titleStyle.asciify(' Dragon').colorize(:white) puts "\n"*2 + "A CLI remake of the text-based adventure game, #{"'Legend of the Green Dragon' (LotGD)".colorize(:green)}." sleep(5) ::Check.playerData end |