diff --git a/data/mods/gen9ssb/abilities.ts b/data/mods/gen9ssb/abilities.ts index 64bafcfb0..d0d76dd88 100644 --- a/data/mods/gen9ssb/abilities.ts +++ b/data/mods/gen9ssb/abilities.ts @@ -30,26 +30,6 @@ export const Abilities: {[k: string]: ModdedAbilityData} = { isBreakable: true, }, - // Aeonic - changetempo: { - shortDesc: "Summons Trick Room on switch-in and negates the user's charge/recharge.", - name: "Change Tempo", - onStart(target) { - if (!this.field.getPseudoWeather('trickroom')) { - this.add('-ability', target, 'Change Tempo'); - this.field.addPseudoWeather('trickroom', target, target.getAbility()); - } - }, - onChargeMove(pokemon, target, move) { - this.attrLastMove('[still]'); - this.addMove('-anim', pokemon, move.name, target); - return false; - }, - onUpdate(pokemon) { - if (pokemon.volatiles['mustrecharge']) pokemon.removeVolatile('mustrecharge'); - }, - }, - // A Quag To The Past quagofruin: { shortDesc: "Active Pokemon without this Ability have their Def multiplied by 0.85. Ignores abilities.", @@ -528,19 +508,6 @@ export const Abilities: {[k: string]: ModdedAbilityData} = { }, }, - // Lalaya - workaholic: { - shortDesc: "Focus Energy on switch-in. Super Luck.", - name: "Workaholic", - onStart(pokemon) { - this.add('-activate', pokemon, 'ability: Workaholic'); - pokemon.addVolatile('Focus Energy'); - }, - onModifyCritRatio(critRatio) { - return critRatio + 1; - }, - }, - // Lumari pyrotechnic: { shortDesc: "Critical hits are guaranteed when foe is burned.", diff --git a/data/mods/gen9ssb/conditions.ts b/data/mods/gen9ssb/conditions.ts index d633f0953..2f36d9c7c 100644 --- a/data/mods/gen9ssb/conditions.ts +++ b/data/mods/gen9ssb/conditions.ts @@ -32,18 +32,6 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin this.add(`c:|${getName('Aelita')}|Well, I hope the Lyoko Warriors are at least well equipped.`); }, }, - aeonic: { - noCopy: true, - onStart() { - this.add(`c:|${getName('Kris')}|aeo you need to submit your switch in and out messages`); - }, - onSwitchOut() { - this.add(`c:|${getName('Kris')}|aeo forgot to fill out his switch messages so I'm here instead.`); - }, - onFaint() { - this.add(`c:|${getName('Aeonic')}|i guess they never miss huh`); - }, - }, aquagtothepast: { noCopy: true, onStart() { @@ -451,28 +439,6 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin this.add(`c:|${getName('Krytocon')}|D:`); }, }, - lalaya: { - noCopy: true, - onStart(pokemon) { - this.add(`c:|${getName('Lalaya')}|Time to mix drinks and end lives.`); - this.add('-start', pokemon, 'typechange', 'Dark/Fairy', '[silent]'); - }, - onSwitchOut() { - this.add(`c:|${getName('Lalaya')}|coffee break, brb`); - }, - onFaint() { - this.add(`c:|${getName('Lalaya')}|alright this job sucks I'm heading home byeeeee`); - }, - innateName: "Sniper", - shortDesc: "If this Pokemon strikes with a critical hit, the damage is multiplied by 1.5.", - onModifyDamage(damage, source, target, move) { - if (source.illusion) return; - if (target.getMoveHitData(move).crit) { - this.debug('Sniper boost'); - return this.chainModify(1.5); - } - }, - }, lumari: { noCopy: true, // quotes added later diff --git a/data/mods/gen9ssb/moves.ts b/data/mods/gen9ssb/moves.ts index 04937931a..aaebb23d2 100644 --- a/data/mods/gen9ssb/moves.ts +++ b/data/mods/gen9ssb/moves.ts @@ -69,29 +69,6 @@ export const Moves: {[k: string]: ModdedMoveData} = { type: "Steel", }, - // Aeonic - memesthatburnthesky: { - accuracy: 100, - basePower: 140, - category: "Special", - shortDesc: "No additional effect.", - name: "Memes That Burn The Sky", - gen: 9, - pp: 5, - priority: 0, - flags: {protect: 1, recharge: 1, mirror: 1}, - onTryMove() { - this.attrLastMove('[still]'); - }, - onPrepareHit(target, source) { - this.add('-anim', source, 'Light That Burns The Sky', target); - this.add('-anim', source, 'Rock Wrecker', target); - }, - secondary: null, - target: "normal", - type: "Rock", - }, - // A Quag To The Past sireswitch: { accuracy: true, @@ -1019,37 +996,6 @@ export const Moves: {[k: string]: ModdedMoveData} = { contestType: "Clever", }, - // Lalaya - sugarrush: { - accuracy: 100, - basePower: 25, - category: "Physical", - shortDesc: "Hits 2-5 times. User: -1 Def, +1 Spe after last hit.", - name: "Sugar Rush", - pp: 15, - priority: 0, - flags: {protect: 1, mirror: 1}, - onTryMove() { - this.attrLastMove('[anim] Lumina Crash'); - }, - onPrepareHit() { - this.add(`c:|${getName('Lalaya')}|imagine suffering from crippling alcoholism`); - }, - onAfterMove() { - this.add(`c:|${getName('Lalaya')}|*sips* cheers bro i'll drink to that`); - }, - multihit: [2, 5], - selfBoost: { - boosts: { - def: -1, - spe: 1, - }, - }, - secondary: null, - target: "normal", - type: "Fairy", - }, - // Lumari mysticalbonfire: { accuracy: 100, diff --git a/data/mods/gen9ssb/pokedex.ts b/data/mods/gen9ssb/pokedex.ts index 88719d028..d02878d6d 100644 --- a/data/mods/gen9ssb/pokedex.ts +++ b/data/mods/gen9ssb/pokedex.ts @@ -12,13 +12,6 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = { abilities: {0: "Fortified Metal"}, }, - // Aeonic - nosepass: { - inherit: true, - baseStats: {hp: 57, atk: 90, def: 95, spa: 75, spd: 103, spe: 29}, - abilities: {0: "Change Tempo"}, - }, - // A Quag To The Past quagsire: { inherit: true, @@ -181,13 +174,6 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = { abilities: {0: "Curse of Dexit"}, }, - // Lalaya - murkrow: { - inherit: true, - types: ["Dark", "Fairy"], - abilities: {0: "Workaholic"}, - }, - // Lumari ponytagalar: { inherit: true, diff --git a/data/mods/gen9ssb/random-teams.ts b/data/mods/gen9ssb/random-teams.ts index 975833ff4..a27516a96 100644 --- a/data/mods/gen9ssb/random-teams.ts +++ b/data/mods/gen9ssb/random-teams.ts @@ -42,12 +42,6 @@ export const ssbSets: SSBSets = { signatureMove: 'Smelt', evs: {hp: 252, atk: 4, spd: 252}, nature: 'Careful', teraType: 'Steel', shiny: true, }, - Aeonic: { - species: 'Nosepass', ability: 'Change Tempo', item: 'Fossilized Fish', gender: 'M', - moves: ['Ice Burn', 'Electro Drift', 'Milk Drink'], - signatureMove: 'Memes That Burn The Sky', - evs: {hp: 252, spa: 252, spd: 4}, ivs: {spe: 0}, nature: 'Quiet', teraType: 'Rock', - }, 'A Quag To The Past': { species: 'Quagsire', ability: 'Quag of Ruin', item: 'Leftovers', gender: 'M', moves: ['Surging Strikes', 'Precipice Blades', 'Gunk Shot'], @@ -205,12 +199,6 @@ export const ssbSets: SSBSets = { signatureMove: 'Attack of Opportunity', evs: {hp: 252, atk: 252, spd: 4}, nature: 'Adamant', shiny: 1024, }, - Lalaya: { - species: 'Murkrow', ability: 'Workaholic', item: 'Loaded Dice', gender: 'F', - moves: ['Knock Off', 'Bone Rush', 'Flip Turn'], - signatureMove: 'Sugar Rush', - evs: {atk: 252, spd: 4, spe: 252}, nature: 'Jolly', teraType: 'Fairy', shiny: true, - }, Lumari: { species: 'Ponyta-Galar', ability: 'Pyrotechnic', item: 'Eviolite', gender: 'F', moves: ['Substitute', ['Sappy Seed', 'Sizzly Slide'], 'Magical Torque'],