class Forest

Forst class, can be raised to ridge, can build woodcutter, chapel, house

Public Class Methods

new(x, y) click to toggle source
Calls superclass method Tile::new
# File lib/demigodGame/Tile.rb, line 80
def initialize(x, y)
  super(x, y)
  @options = [:w, :c, :h, :r]
  @type = 'F'
end