Class: RPG::System::TestBattler

Inherits:
Object
  • Object
show all
Defined in:
lib/rgss3/rpg.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTestBattler

Returns a new instance of TestBattler.



990
991
992
993
994
# File 'lib/rgss3/rpg.rb', line 990

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.



995
996
997
# File 'lib/rgss3/rpg.rb', line 995

def actor_id
  @actor_id
end

#equipsObject

Returns the value of attribute equips.



997
998
999
# File 'lib/rgss3/rpg.rb', line 997

def equips
  @equips
end

#levelObject

Returns the value of attribute level.



996
997
998
# File 'lib/rgss3/rpg.rb', line 996

def level
  @level
end