Skip to content

Commit

Permalink
Remove Workflows, Dec 8 gay
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaD173 committed Dec 9, 2023
1 parent a6b1757 commit 56ed8b4
Show file tree
Hide file tree
Showing 8 changed files with 9,032 additions and 9,018 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
name: Tests

on:
workflow_run:
workflows: [Update Sets]
types: [completed]
workflow_dispatch:
# workflow_run:
# workflows: [Update Sets]
# types: [completed]
# workflow_dispatch:
push:
branches: [ master ]
pull_request:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Update Sets

on:
workflow_dispatch:
schedule:
- cron: '27 23 */3 * *'
# on:
# workflow_dispatch:
# schedule:
# - cron: '27 23 */3 * *'

jobs:
scheduled:
Expand Down
4 changes: 2 additions & 2 deletions calc/src/data/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ const SV = SV_orig.concat([
'Wind Chime',
'Machine Learning',
'Mystic Fist',
"Ballin'"
])
"Ballin'",
]);

export const ABILITIES = [[], RBY, GSC, ADV, DPP, BW, XY, SM, SS, SV];

Expand Down
37 changes: 23 additions & 14 deletions calc/src/data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4824,8 +4824,8 @@ const GAY_PATCH = {
'Future Sight': {bp: 150},
'Doom Desire': {bp: 150},
'Misty Explosion': {bp: 150},
'Explosion': {bp: 350},
'Self-Destruct': {bp: 275},
'Explosion': {bp: 325},
'Self-Destruct': {bp: 250},
'Round': {bp: 70},
'Vise Grip': {bp: 70},
'Grassy Glide': {bp: 60},
Expand Down Expand Up @@ -4885,8 +4885,8 @@ const GAY_PATCH = {
'Triple Dive': {bp: 80},
'Ice Hammer': {bp: 110},
'Steamroller': {bp: 85},
'Luster Purge': {bp: 80},
'Mist Ball': {bp: 80},
'Luster Purge': {bp: 75},
'Mist Ball': {bp: 75},
'Accelerock': {bp: 60},
'G-Max Replenish': {bp: 70},
'G-Max Malodor': {bp: 80},
Expand All @@ -4906,25 +4906,34 @@ const GAY_PATCH = {
'Hidden Power Fairy': {bp: 60, type: 'Fairy', category: 'Special'},
'Hidden Power Bug': {category: 'Physical'},
'Hidden Power Fighting': {category: 'Physical'},
'Hidden Power Flying': {category: 'Physical'},
'Hidden Power Ghost': {category: 'Physical'},
'Hidden Power Poison': {category: 'Physical'},
'Hidden Power Rock': {category: 'Physical'},
'Hidden Power Steel': {category: 'Physical'},
'Hidden Power Ground': {category: 'Physical'},
'Hidden Power Flying': {category: 'Physical'},
'Hidden Power Ghost': {category: 'Physical'},
'Hidden Power Poison': {category: 'Physical'},
'Hidden Power Rock': {category: 'Physical'},
'Hidden Power Steel': {category: 'Physical'},
'Hidden Power Ground': {category: 'Physical'},
// New Moves
'Purifying Water': {bp: 100, type: 'Water', category: 'Special', secondaries: true},
'Divine Smite': {bp: 100, type: 'Electric', category: 'Special', secondaries: true},
'Firewall': {bp: 0, type: 'Fire', category: 'Status', priority: 4},
'Stalacbite': {bp: 75, type: 'Rock', category: 'Physical', makesContact: true, secondaries: true, isBite: true},
'Dive Bomb': {bp: 130, type: 'Flying', category: 'Physical', hasCrashDamage: true, makesContact: true},
'Psych Out': {bp: 40, type: 'Psychic', category: 'Special', makesContact: true, secondaries: true, priority: 3},
'Stalacbite': {
bp: 75, type: 'Rock', category: 'Physical',
makesContact: true, secondaries: true, isBite: true
},
'Dive Bomb': {
bp: 130, type: 'Flying', category: 'Physical',
hasCrashDamage: true, makesContact: true
},
'Psych Out': {
bp: 40, type: 'Psychic', category: 'Special',
makesContact: true, secondaries: true, priority: 3
},
'Quarry': {bp: 0, type: 'Rock', category: 'Status'},
'Smeltery': {bp: 0, type: 'Steel', category: 'Status'},
'Ice Rink': {bp: 0, type: 'Ice', category: 'Status'},
'Flash Freeze': {bp: 0, type: 'Ice', category: 'Status'},
'Slush Crush': {bp: 0, type: 'Steel', makesContact: true, category: 'Physical'},
}
};


const SV: {[name: string]: MoveData} = extend(true, {}, SV_old, GAY_PATCH);
Expand Down
Loading

0 comments on commit 56ed8b4

Please sign in to comment.