mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-07 23:52:22 -05:00
11 lines
251 B
TypeScript
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();
|
|
}
|
|
},
|
|
},
|
|
};
|