mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-08-01 08:15:08 -05:00
12 lines
184 B
TypeScript
12 lines
184 B
TypeScript
export const Scripts: ModdedBattleScriptsData = {
|
|
gen: 8,
|
|
inherit: 'gen8',
|
|
side: {
|
|
inherit: true,
|
|
canDynamaxNow() {
|
|
// Dynamaxing is not in BDSP
|
|
return false;
|
|
},
|
|
},
|
|
};
|