Class: RPG::Actor
Instance Attribute Summary collapse
-
#character_index ⇒ Object
Returns the value of attribute character_index.
-
#character_name ⇒ Object
Returns the value of attribute character_name.
-
#class_id ⇒ Object
Returns the value of attribute class_id.
-
#equips ⇒ Object
Returns the value of attribute equips.
-
#face_index ⇒ Object
Returns the value of attribute face_index.
-
#face_name ⇒ Object
Returns the value of attribute face_name.
-
#initial_level ⇒ Object
Returns the value of attribute initial_level.
-
#max_level ⇒ Object
Returns the value of attribute max_level.
-
#nickname ⇒ Object
Returns the value of attribute nickname.
Attributes inherited from BaseItem
#description, #features, #icon_index, #id, #name, #note
Instance Method Summary collapse
-
#initialize ⇒ Actor
constructor
A new instance of Actor.
Constructor Details
#initialize ⇒ Actor
Returns a new instance of Actor.
388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/rgss3/rpg.rb', line 388 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_index ⇒ Object
Returns the value of attribute character_index.
405 406 407 |
# File 'lib/rgss3/rpg.rb', line 405 def character_index @character_index end |
#character_name ⇒ Object
Returns the value of attribute character_name.
404 405 406 |
# File 'lib/rgss3/rpg.rb', line 404 def character_name @character_name end |
#class_id ⇒ Object
Returns the value of attribute class_id.
401 402 403 |
# File 'lib/rgss3/rpg.rb', line 401 def class_id @class_id end |
#equips ⇒ Object
Returns the value of attribute equips.
408 409 410 |
# File 'lib/rgss3/rpg.rb', line 408 def equips @equips end |
#face_index ⇒ Object
Returns the value of attribute face_index.
407 408 409 |
# File 'lib/rgss3/rpg.rb', line 407 def face_index @face_index end |
#face_name ⇒ Object
Returns the value of attribute face_name.
406 407 408 |
# File 'lib/rgss3/rpg.rb', line 406 def face_name @face_name end |
#initial_level ⇒ Object
Returns the value of attribute initial_level.
402 403 404 |
# File 'lib/rgss3/rpg.rb', line 402 def initial_level @initial_level end |
#max_level ⇒ Object
Returns the value of attribute max_level.
403 404 405 |
# File 'lib/rgss3/rpg.rb', line 403 def max_level @max_level end |
#nickname ⇒ Object
Returns the value of attribute nickname.
400 401 402 |
# File 'lib/rgss3/rpg.rb', line 400 def nickname @nickname end |