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.



1334
1335
1336
1337
1338
# File 'lib/R3EXS/RGSS3.rb', line 1334

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.



1340
1341
1342
# File 'lib/R3EXS/RGSS3.rb', line 1340

def actor_id
  @actor_id
end

#equipsObject

Returns the value of attribute equips.



1342
1343
1344
# File 'lib/R3EXS/RGSS3.rb', line 1342

def equips
  @equips
end

#levelObject

Returns the value of attribute level.



1341
1342
1343
# File 'lib/R3EXS/RGSS3.rb', line 1341

def level
  @level
end