class Mobile

A 'Mobile' is any non-player character in the game TODO: Write 'act' method for Mobile to be called on game ticks (or some multiple thereof)

Public Class Methods

new(name="", initial_level=1, initial_location=3001, description="", keywords=Array.new) click to toggle source
Calls superclass method Character::new
# File lib/skirmish/character.rb, line 76
def initialize(name="", initial_level=1, initial_location=3001, description="", keywords=Array.new)
  super(name, initial_level, initial_location, description, keywords)
end