• Check out the relaunch of our general collection, with classic designs and new ones by our very own Pissog!

Metagamiate!

New names:
Gladiate ---> Punchiate
Metallate ---> Ironate
Pyrate ---> Flariate
Germinate ---> Forestate
Hydrate ---> Aqualiate
Slaviate ---> Dracate
Tenebrate ---> Nightate
Psychokinate ---> Psyliate
 
Scizor @ scizorite/life orb
Adamant
252 Atk, 252 Def, 4 HP
Feint (87 BP FTW)
bullet punch
swords dance/roost/brick break/superpower
thief/knock off

Feint hits through protecting moves and has +2 priority
Bullet Punch is self explanatory
the latter 2 give him perfect coverage. swords dance for extra power. roost for recovery.
Thief is stronger if your opponent has no item.

Edit: Only Pinsir-Mega, Tornadus, and Noivern have Aerilate.
 
Last edited:
Scizor @ scizorite/life orb
Adamant
252 Atk, 252 Def, 4 HP
Feint (87 BP FTW)
bullet punch
swords dance/roost/brick break/superpower
thief/knock off

Feint hits through protecting moves and has +2 priority
Bullet Punch is self explanatory
the latter 2 give him perfect coverage. swords dance for extra power. roost for recovery.
Thief is stronger if your opponent has no item.

Edit: Only Pinsir-Mega, Tornadus, and Noivern have Aerilate.
87 BP? This is Metagamiate....
This seems like a Scizor belonging to another meta...
 
Guts is ridiculous. Heracross gets clear of 30% guaranteed overkill on standard Cresselia with Facade. Luxray and Ursaring get a 2HKO, and Conkeldurr gets a 3HKO. Flareon just barely edges out a OHKO in the sun.
 
I'd love to use Terrakion here. Stone Edge 1.5 and Rock-type Quick Attack? Yes. And Boomburst Noivern sounds too good.
 
Any pokemon with ExtremeSpeed? (Apart from Normal types obviously)
I did /ds ExtremeSpeed, all, and here is what came up.
Arcanine, Arceus, Deoxys, Dragonair, Dragonite, Dratini, Entei, Genesect, Linoone, Lucario, Pikachu, Raichu, Raikou, Rayquaza, Smeargle, Suicune, Togekiss, Zigzagoon, Zygarde
I think we can agree this move is poorly distributed.
 
So the current implementation crashes implies that if a Quagsire uses Soak on Pikachu, Pikachu will lost Generate and get Hydrate. Is that intended?
 
Last edited:
So the current implementation crashes implies that if a Quagsire uses Soak on Pikachu, Pikachu will lost Generate and get Hydrate. Is that intended?
Yup, because Pikachu's primary type would then be water. Also how does it crash so I can either fix it or make it 5000 times worse
 
Yup, because Pikachu's primary type would then be water. Also how does it crash so I can either fix it or make it 5000 times worse

Well, no it doesn't crash, but it can certainly use a clean-up:

Code:
{
        name: "Metagamiate",
        section: "Other Metagames",
        ruleset: ['Pokemon', 'Standard', 'Team Preview'],
        banlist: ['Uber', 'Soul Dew', 'Gengarite', 'Kangaskhanite', 'Lucarionite'],
        onModifyMove: function(move, pokemon) {
            if (move.type === 'Normal' && move.id !== 'hiddenpower' && (pokemon.ignore['Ability'] || !(pokemon.ability in {'refrigerate':1, 'pixilate':1, 'aerilate':1}))) {
                if (!pokemon.typesData[0] || pokemon.typesData[0].type === '???') return;
                var potato = pokemon.typesData[0].type;
                move.type = potato;
                move.isMetagamiate = true;
            }
        },
        onBasePowerPriority: 9,
        onBasePower: function(basePower, attacker, defender, move) {
            if (!move.isMetagamiate) return;
            this.debug('Move boosted by Metagamiate.');
            return this.chainModify([0x14CD, 0x1000]);
        }
    }

Anyway, I am starting to love this meta though I haven't played it yet against someone else, and I don't know what will my vote be for next OM of the Month :p

EDIT: Keeping potato for the lulz.
 
Back
Top