Module: Battle::Effects::Mechanics::Disturbable
- Included in:
- ForceNextMoveDisturbable
- Defined in:
- scripts/01600 Alpha 25 Battle Engine/04000 Effects/00001 Mechanics/00100 Disturbable.rb
Instance Method Summary collapse
-
#disturb
Make the move disturbed.
-
#disturbed? ⇒ Boolean
Tell if the move has been disturbed.
Instance Method Details
#disturb
Make the move disturbed
6 7 8 |
# File 'scripts/01600 Alpha 25 Battle Engine/04000 Effects/00001 Mechanics/00100 Disturbable.rb', line 6 def disturb @disturbed = true end |
#disturbed? ⇒ Boolean
Tell if the move has been disturbed
12 13 14 |
# File 'scripts/01600 Alpha 25 Battle Engine/04000 Effects/00001 Mechanics/00100 Disturbable.rb', line 12 def disturbed? @disturbed end |