The data class for the actors used in battle tests.
The actor ID.
The actor's level.
The actor's equipment. An array of weapon IDs or armor IDs with the following subscripts:
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