mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-02 03:28:00 -05:00
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
export const Moves: {[k: string]: ModdedMoveData} = {
|
|
poltergeist: {
|
|
inherit: true,
|
|
onTry(source, target) {
|
|
return !!target.item || Object.keys(target.volatiles).some(volatile => volatile.startsWith('item:'));
|
|
},
|
|
},
|
|
};
|