SSB: Remove a random duck

This commit is contained in:
Kris Johnson
2020-11-28 02:45:20 -07:00
parent 4df9eb309b
commit fe52ec2dab
3 changed files with 0 additions and 53 deletions

View File

@@ -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() {

View File

@@ -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,

View File

@@ -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']],