class Plains

Plains class, can be raised to ridge or forest, can build house, chapel and sheeps

Public Class Methods

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