Class: Battle::Move::AbilitySwap
- Inherits:
-
Battle::Move
- Object
- Battle::Move
- Battle::Move::AbilitySwap
- Defined in:
- scripts/01600 Alpha 25 Battle Engine/04150 Battle_Move/00010 Definitions/00300 AbilityChanging.rb
Overview
Skill Swap move Move that exchanges ability between user and target
Constant Summary
Constants inherited from Battle::Move
OneTarget, REGISTERED_MOVES, R_RANGE, TargetNoAsk
Instance Attribute Summary
Attributes inherited from Battle::Move
#consecutive_use_count, #damage_dealt, #effectiveness, #forced_next_move_decrease_pp, #id, #logic, #original, #pp, #ppmax, #scene, #used
Instance Method Summary collapse
-
#deal_effect(user, actual_targets)
Function that deals the effect to the pokemon.
-
#move_usable_by_user(user, targets) ⇒ Boolean
Function that tests if the user is able to use the move.
Methods inherited from Battle::Move
[], #accuracy, #accuracy_mod, #accuracy_text, #atk_class, #authentic?, #ballistics?, #battle_stage_mod, #battler_targets, #be_method, #bite?, #blocable?, #blocked_by?, #bypass_chance_of_hit?, #calc_stab, #chance_of_hit, #clone, #critical_hit?, #critical_rate, #damages, #dance?, #data, #db_symbol, #definitive_types, #description, #direct?, #disable_reason, #disabled?, #effect_chance, #evasion_mod, #force_switch?, #gravity_affected?, #heal?, #initialize, #magic_coat_affected?, #mirror_move_affected?, #move_blocked_by_target?, #name, #no_choice_skill?, #not_very_effective?, #ohko?, #one_target?, #physical?, #powder?, #power, #power_text, #pp_text, #pre_attack?, #priority, #proceed, #proceed_pre_attack, #pulse?, #punching?, #real_base_power, #recoil?, #recoil_factor, register, register_move_disabled_check_hook, register_move_prevention_target_hook, register_move_prevention_user_hook, register_move_type_change_hook, register_single_type_multiplier_overwrite_hook, #relative_priority, #self_user_switch?, #snatchable?, #sound_attack?, #special?, #status?, #status_effects, #super_effective?, #target, #to_s, #trigger_king_rock?, #type, #type?, #type_dark?, #type_dragon?, #type_electric?, #type_fairy?, #type_fighting?, #type_fire?, #type_flying?, #type_ghost?, #type_grass?, #type_ground?, #type_ice?, #type_insect?, #type_modifier, #type_normal?, #type_poison?, #type_psychic?, #type_rock?, #type_steel?, #type_water?, #unfreeze?
Methods included from Hooks
#exec_hooks, #force_return, included, register, remove, remove_without_name
Constructor Details
This class inherits a constructor from Battle::Move
Instance Method Details
#deal_effect(user, actual_targets)
Function that deals the effect to the pokemon
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
# File 'scripts/01600 Alpha 25 Battle Engine/04150 Battle_Move/00010 Definitions/00300 AbilityChanging.rb', line 126 def deal_effect(user, actual_targets) actual_targets.each do |target| next unless @logic.ability_change_handler.can_change_ability?(user, target.ability_db_symbol, user, self) && @logic.ability_change_handler.can_change_ability?(target, user.ability_db_symbol, user, self) @scene.visual.show_ability(user) @scene.visual.show_ability(target) @scene.visual.wait_for_animation user_ability = user.ability_db_symbol @logic.ability_change_handler.change_ability(user, target.ability_db_symbol, user, self) @logic.ability_change_handler.change_ability(target, user_ability, user, self) @scene.visual.show_ability(user) @scene.visual.show_ability(target) @scene.(parse_text_with_pokemon(19, 508, user)) end end |
#move_usable_by_user(user, targets) ⇒ Boolean
Thing that prevents the move from being used should be defined by :move_prevention_user Hook
Function that tests if the user is able to use the move
110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'scripts/01600 Alpha 25 Battle Engine/04150 Battle_Move/00010 Definitions/00300 AbilityChanging.rb', line 110 def move_usable_by_user(user, targets) return false unless super return false if targets.empty? unless @logic.ability_change_handler.can_change_ability?(user, targets.first.ability_db_symbol, user, self) && @logic.ability_change_handler.can_change_ability?(targets.first, user.ability_db_symbol, user, self) show_usage_failure(user) return false end return true end |