Class: Studio::LevelLearnableMove

Inherits:
LearnableMove show all
Defined in:
scripts/00800 Studio/00001 Data/00042 CreatureForm.rb

Overview

Data class describing a move learnable by level

Instance Attribute Summary collapse

Attributes inherited from LearnableMove

#move

Instance Method Summary collapse

Methods inherited from LearnableMove

#breed_learnable?, #evolution_learnable?, #tech_learnable?, #tutor_learnable?

Instance Attribute Details

#levelInteger (readonly)

Level when the move can be learnt

Returns:



205
206
207
# File 'scripts/00800 Studio/00001 Data/00042 CreatureForm.rb', line 205

def level
  @level
end

Instance Method Details

#level_learnable?Boolean

Test if the move is learnable by level

Returns:

  • (Boolean)


209
210
211
# File 'scripts/00800 Studio/00001 Data/00042 CreatureForm.rb', line 209

def level_learnable?
  true
end