From fe52ec2dab69a55dfd27491dddbd9629e078956c Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Sat, 28 Nov 2020 02:45:20 -0700 Subject: [PATCH] SSB: Remove a random duck --- data/mods/ssb/conditions.ts | 12 ------------ data/mods/ssb/moves.ts | 35 ----------------------------------- data/mods/ssb/random-teams.ts | 6 ------ 3 files changed, 53 deletions(-) diff --git a/data/mods/ssb/conditions.ts b/data/mods/ssb/conditions.ts index c1be8ef7f2..1b6f6fbd00 100644 --- a/data/mods/ssb/conditions.ts +++ b/data/mods/ssb/conditions.ts @@ -160,18 +160,6 @@ export const Conditions: {[k: string]: ModdedConditionData} = { this.add(`c|+A Quag to The Past|Wait, this isn't the groupchat...`); }, }, - arandomduck: { - noCopy: true, - onStart() { - this.add(`c|+a random duck|SWANNA LOSE???`); - }, - onSwitchOut() { - this.add(`c|+a random duck|YEET`); - }, - onFaint() { - this.add(`c|+a random duck|I guess that was my swan song`); - }, - }, arcticblast: { noCopy: true, onStart() { diff --git a/data/mods/ssb/moves.ts b/data/mods/ssb/moves.ts index f26197d7b6..83bcbaa894 100644 --- a/data/mods/ssb/moves.ts +++ b/data/mods/ssb/moves.ts @@ -588,41 +588,6 @@ export const Moves: {[k: string]: ModdedMoveData} = { target: "normal", type: "Ground", }, - // a random duck - flock: { - basePower: 100, - accuracy: 100, - category: "Special", - desc: "This move suppresses the foe's ability and has a 70% chance to boost the user's Special Attack and Speed by one stage.", - shortDesc: "70% SpA & Spe +1. Suppresses foe's ability.", - name: "Flock", - isNonstandard: "Custom", - pp: 10, - priority: 0, - flags: {mirror: 1, protect: 1}, - onTryMove() { - this.attrLastMove('[still]'); - }, - onPrepareHit(target, source) { - this.add('-anim', source, 'Cosmic Power', source); - this.add('-anim', source, 'Brave Bird', target); - this.add('-anim', source, 'Judgment', target); - }, - onHit(target, source) { - target.addVolatile('gastroacid', source); - }, - secondary: { - chance: 70, - self: { - boosts: { - spa: 1, - spe: 1, - }, - }, - }, - target: "normal", - type: "Flying", - }, // Arcticblast trashalanche: { basePower: 80, diff --git a/data/mods/ssb/random-teams.ts b/data/mods/ssb/random-teams.ts index 8f14e28744..b90824ce72 100644 --- a/data/mods/ssb/random-teams.ts +++ b/data/mods/ssb/random-teams.ts @@ -110,12 +110,6 @@ export class RandomStaffBrosTeams extends RandomTeams { signatureMove: 'Murky Ambush', evs: {hp: 252, def: 252, spd: 4}, ivs: {spe: 0}, nature: 'Relaxed', }, - 'a random duck': { - species: 'Swanna', ability: 'Volt Absorb', item: 'Safety Goggles', gender: 'M', - moves: ['Nasty Plot', 'Steam Eruption', 'Oblivion Wing'], - signatureMove: 'Flock', - evs: {spa: 252, spd: 4, spe: 252}, ivs: {atk: 0}, nature: 'Timid', shiny: true, - }, Arcticblast: { species: 'Garbodor', ability: 'Analytic', item: 'Assault Vest', gender: 'M', moves: ['Knock Off', 'Earthquake', ['Horn Leech', 'U-turn', 'Avalanche']],