mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-06-02 22:08:36 -05:00
Fix Lock-On and Mind Reader.
- effect is on the target, not the user
This commit is contained in:
parent
241320fc76
commit
6af36ceab3
|
|
@ -6435,13 +6435,13 @@ exports.BattleMovedex = {
|
|||
volatileStatus: 'lockon',
|
||||
effect: {
|
||||
duration: 2,
|
||||
onModifyMove: function(move) {
|
||||
onFoeModifyMove: function(move) {
|
||||
move.accuracy = true;
|
||||
move.alwaysHit = true;
|
||||
}
|
||||
},
|
||||
secondary: false,
|
||||
target: "self",
|
||||
target: "normal",
|
||||
type: "Normal"
|
||||
},
|
||||
"lovelykiss": {
|
||||
|
|
@ -7185,7 +7185,7 @@ exports.BattleMovedex = {
|
|||
priority: 0,
|
||||
volatileStatus: 'lockon',
|
||||
secondary: false,
|
||||
target: "self",
|
||||
target: "normal",
|
||||
type: "Normal"
|
||||
},
|
||||
"minimize": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user