Class: RPG::Actor

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

Instance Attribute Summary collapse

Attributes inherited from BaseItem

#description, #features, #icon_index, #id, #name, #note

Instance Method Summary collapse

Constructor Details

#initializeActor

Returns a new instance of Actor.



665
666
667
668
669
670
671
672
673
674
675
676
# File 'lib/R3EXS/RGSS3.rb', line 665

def initialize
    super
    @nickname        = ''
    @class_id        = 1
    @initial_level   = 1
    @max_level       = 99
    @character_name  = ''
    @character_index = 0
    @face_name       = ''
    @face_index      = 0
    @equips          = [0, 0, 0, 0, 0]
end

Instance Attribute Details

#character_indexObject

Returns the value of attribute character_index.



683
684
685
# File 'lib/R3EXS/RGSS3.rb', line 683

def character_index
  @character_index
end

#character_nameObject

Returns the value of attribute character_name.



682
683
684
# File 'lib/R3EXS/RGSS3.rb', line 682

def character_name
  @character_name
end

#class_idObject

Returns the value of attribute class_id.



679
680
681
# File 'lib/R3EXS/RGSS3.rb', line 679

def class_id
  @class_id
end

#equipsObject

Returns the value of attribute equips.



686
687
688
# File 'lib/R3EXS/RGSS3.rb', line 686

def equips
  @equips
end

#face_indexObject

Returns the value of attribute face_index.



685
686
687
# File 'lib/R3EXS/RGSS3.rb', line 685

def face_index
  @face_index
end

#face_nameObject

Returns the value of attribute face_name.



684
685
686
# File 'lib/R3EXS/RGSS3.rb', line 684

def face_name
  @face_name
end

#initial_levelObject

Returns the value of attribute initial_level.



680
681
682
# File 'lib/R3EXS/RGSS3.rb', line 680

def initial_level
  @initial_level
end

#max_levelObject

Returns the value of attribute max_level.



681
682
683
# File 'lib/R3EXS/RGSS3.rb', line 681

def max_level
  @max_level
end

#nicknameObject

Returns the value of attribute nickname.



678
679
680
# File 'lib/R3EXS/RGSS3.rb', line 678

def nickname
  @nickname
end