Class: Studio::LevelLearnableMove
- Inherits:
-
LearnableMove
- Object
- LearnableMove
- Studio::LevelLearnableMove
- Defined in:
- scripts/00800 Studio/00001 Data/00042 CreatureForm.rb
Overview
Data class describing a move learnable by level
Instance Attribute Summary collapse
-
#level ⇒ Integer
readonly
Level when the move can be learnt.
Attributes inherited from LearnableMove
Instance Method Summary collapse
-
#level_learnable? ⇒ Boolean
Test if the move is learnable by level.
Methods inherited from LearnableMove
#breed_learnable?, #evolution_learnable?, #tech_learnable?, #tutor_learnable?
Instance Attribute Details
#level ⇒ Integer (readonly)
Level when the move can be learnt
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
209 210 211 |
# File 'scripts/00800 Studio/00001 Data/00042 CreatureForm.rb', line 209 def level_learnable? true end |