Class: RPG::System::TestBattler

Inherits:
Object
  • Object
show all
Defined in:
lib/R3EXS/RGSS3.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTestBattler

Returns a new instance of TestBattler.



1356
1357
1358
1359
1360
# File 'lib/R3EXS/RGSS3.rb', line 1356

def initialize
    @actor_id = 1
    @level    = 1
    @equips   = [0, 0, 0, 0, 0]
end

Instance Attribute Details

#actor_idObject

Returns the value of attribute actor_id.



1362
1363
1364
# File 'lib/R3EXS/RGSS3.rb', line 1362

def actor_id
  @actor_id
end

#equipsObject

Returns the value of attribute equips.



1364
1365
1366
# File 'lib/R3EXS/RGSS3.rb', line 1364

def equips
  @equips
end

#levelObject

Returns the value of attribute level.



1363
1364
1365
# File 'lib/R3EXS/RGSS3.rb', line 1363

def level
  @level
end