Module: GamePlay::PartyMenuMixin
- Included in:
- Party_Menu
- Defined in:
- docs/4_Systems_102_Party.rb
Overview
Module defining the IO of the PartyMenu
Instance Attribute Summary collapse
-
#call_skill_process ⇒ Array(Proc, PFM::Pokemon, PFM::Skill), ...
Return the skill process to call.
-
#return_data ⇒ Integer
Return data of the Party Menu.
Instance Method Summary collapse
-
#party_selected? ⇒ Boolean
Tell if a party was selected.
-
#pokemon_selected? ⇒ Boolean
Tell if a Pokemon was selected.
-
#selected_pokemons ⇒ Array<PFM::Pokemon>
Get all the selected Pokemon.
Instance Attribute Details
#call_skill_process ⇒ Array(Proc, PFM::Pokemon, PFM::Skill), ...
Return the skill process to call
458 459 460 |
# File 'docs/4_Systems_102_Party.rb', line 458 def call_skill_process @call_skill_process end |
#return_data ⇒ Integer
Return data of the Party Menu
455 456 457 |
# File 'docs/4_Systems_102_Party.rb', line 455 def return_data @return_data end |
Instance Method Details
#party_selected? ⇒ Boolean
Tell if a party was selected
465 466 |
# File 'docs/4_Systems_102_Party.rb', line 465 def party_selected? end |
#pokemon_selected? ⇒ Boolean
Tell if a Pokemon was selected
461 462 |
# File 'docs/4_Systems_102_Party.rb', line 461 def pokemon_selected? end |
#selected_pokemons ⇒ Array<PFM::Pokemon>
Get all the selected Pokemon
469 470 |
# File 'docs/4_Systems_102_Party.rb', line 469 def selected_pokemons end |