class Gemwarrior::Person

Public Class Methods

new() click to toggle source
Calls superclass method Gemwarrior::Creature::new
# File lib/gemwarrior/entities/person.rb, line 8
def initialize
  super

  self.name         = 'person.'
  self.name_display = Formatting::upstyle(name)
  self.description  = 'It appears to be a person of some kind.'
  self.takeable     = false
end

Public Instance Methods

use(world) click to toggle source
# File lib/gemwarrior/entities/person.rb, line 17
def use(world)
  'That person does not seem to want to talk to you right now.'
end