pokemon-showdown/data/mods/gen8sharedpower/items.ts
2022-11-30 23:06:50 -07:00

11 lines
251 B
TypeScript

export const Items: {[k: string]: ModdedItemData} = {
adrenalineorb: {
inherit: true,
onAfterBoost(boost, target, source, effect) {
if (effect.id === 'intimidate' || effect.id === 'ability:intimidate') {
target.useItem();
}
},
},
};