RPG::System::TestBattler

The data class for the actors used in battle tests.

Superclass

Referrer

Attributes

actor_id

The actor ID.

level

The actor's level.

equips

The actor's equipment. An array of weapon IDs or armor IDs with the following subscripts:

Definition

class RPG::System::TestBattler
  def initialize
    @actor_id = 1
    @level = 1
    @equips = [0,0,0,0,0]
  end
  attr_accessor :actor_id
  attr_accessor :level
  attr_accessor :equips
end