Skip to content

Commit

Permalink
Remove Override
Browse files Browse the repository at this point in the history
  • Loading branch information
xsn34kzx committed Aug 24, 2024
1 parent 9e1e403 commit eadcbfd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/overrides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import { type PokeballCounts } from "./battle-scene";
import { Gender } from "./data/gender";
import { allSpecies } from "./data/pokemon-species"; // eslint-disable-line @typescript-eslint/no-unused-vars
import { Variant } from "./data/variant";
import { Stat } from "./enums/stat";
import { type ModifierOverride } from "./modifier/modifier-type";

/**
Expand All @@ -30,9 +29,7 @@ import { type ModifierOverride } from "./modifier/modifier-type";
* }
* ```
*/
const overrides = {
ITEM_REWARD_OVERRIDE: [{ name: "TEMP_STAT_STAGE_BOOSTER", type: Stat.ATK }, { name: "BASE_STAT_BOOSTER" }, { name: "DIRE_HIT" }]
} satisfies Partial<InstanceType<typeof DefaultOverrides>>;
const overrides = {} satisfies Partial<InstanceType<typeof DefaultOverrides>>;

/**
* If you need to add Overrides values for local testing do that inside {@linkcode overrides}
Expand Down

0 comments on commit eadcbfd

Please sign in to comment.