File size: 253 Bytes
5c2ed06
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
	poltergeist: {
		inherit: true,
		onTry(source, target) {
			return !!target.item || Object.keys(target.volatiles).some(volatile => volatile.startsWith('item:'));
		},
	},
};