Skip to content

Commit

Permalink
Brawly split imports
Browse files Browse the repository at this point in the history
  • Loading branch information
TerraPrograms committed Nov 11, 2023
1 parent 3f9136a commit f43fe2e
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions dist/calc/items.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import { Generation, TypeName, StatID } from './data/interface';
export declare const SEED_BOOSTED_STAT: {
[item: string]: StatID;
};
export declare function getItemBoostType(item: string | undefined): "Normal" | "Fighting" | "Flying" | "Poison" | "Ground" | "Rock" | "Bug" | "Ghost" | "Steel" | "Fire" | "Water" | "Grass" | "Electric" | "Psychic" | "Ice" | "Dragon" | "Dark" | "Fairy" | undefined;
export declare function getBerryResistType(berry: string | undefined): "Normal" | "Fighting" | "Flying" | "Poison" | "Ground" | "Rock" | "Bug" | "Ghost" | "Steel" | "Fire" | "Water" | "Grass" | "Electric" | "Psychic" | "Ice" | "Dragon" | "Dark" | "Fairy" | undefined;
export declare function getFlingPower(item?: string): 0 | 100 | 10 | 30 | 40 | 60 | 50 | 85 | 20 | 130 | 110 | 95 | 90 | 80 | 70;
export declare function getItemBoostType(item: string | undefined): "Electric" | "Psychic" | "Normal" | "Fighting" | "Flying" | "Poison" | "Ground" | "Rock" | "Bug" | "Ghost" | "Steel" | "Fire" | "Water" | "Grass" | "Ice" | "Dragon" | "Dark" | "Fairy" | undefined;
export declare function getBerryResistType(berry: string | undefined): "Electric" | "Psychic" | "Normal" | "Fighting" | "Flying" | "Poison" | "Ground" | "Rock" | "Bug" | "Ghost" | "Steel" | "Fire" | "Water" | "Grass" | "Ice" | "Dragon" | "Dark" | "Fairy" | undefined;
export declare function getFlingPower(item?: string): 0 | 10 | 30 | 100 | 40 | 60 | 50 | 85 | 20 | 130 | 110 | 95 | 90 | 80 | 70;
export declare function getNaturalGift(gen: Generation, item: string): {
t: TypeName;
p: number;
};
export declare function getTechnoBlast(item: string): "Fire" | "Water" | "Electric" | "Ice" | undefined;
export declare function getTechnoBlast(item: string): "Electric" | "Fire" | "Water" | "Ice" | undefined;
export declare function getMultiAttack(item: string): TypeName | undefined;
4 changes: 2 additions & 2 deletions dist/honkalculate.html
Original file line number Diff line number Diff line change
Expand Up @@ -883,8 +883,8 @@
<script type="text/javascript" src="./calc/util.js?8fa0c7ff"></script>
<script type="text/javascript" src="./calc/stats.js?9220179f"></script>
<script type="text/javascript" src="./calc/data/species.js?7d33143e"></script>
<script type="text/javascript" src="./js/data/sets/gen9.js?159d8699"></script>
<script type="text/javascript" src="./js/data/sets/gen8.js?559252d4"></script>
<script type="text/javascript" src="./js/data/sets/gen9.js?abb84166"></script>
<script type="text/javascript" src="./js/data/sets/gen8.js?0870ccad"></script>
<script type="text/javascript" src="./js/data/sets/gen7.js?78168bde"></script>
<script type="text/javascript" src="./js/data/sets/gen6.js?2219279f"></script>
<script type="text/javascript" src="./js/data/sets/gen5.js?c8933737"></script>
Expand Down
4 changes: 2 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1669,8 +1669,8 @@ <h5>OHKO Colors</h5>
<script type="text/javascript" src="./calc/util.js?8fa0c7ff"></script>
<script type="text/javascript" src="./calc/stats.js?9220179f"></script>
<script type="text/javascript" src="./calc/data/species.js?7d33143e"></script>
<script type="text/javascript" src="./js/data/sets/gen9.js?159d8699"></script>
<script type="text/javascript" src="./js/data/sets/gen8.js?559252d4"></script>
<script type="text/javascript" src="./js/data/sets/gen9.js?abb84166"></script>
<script type="text/javascript" src="./js/data/sets/gen8.js?0870ccad"></script>
<script type="text/javascript" src="./js/data/sets/gen7.js?78168bde"></script>
<script type="text/javascript" src="./js/data/sets/gen6.js?2219279f"></script>
<script type="text/javascript" src="./js/data/sets/gen5.js?c8933737"></script>
Expand Down
2 changes: 1 addition & 1 deletion dist/js/data/sets/gen8.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/data/sets/gen9.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/data/sets/gen8.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/data/sets/gen9.js

Large diffs are not rendered by default.

0 comments on commit f43fe2e

Please sign in to comment.