No Ability Metagame!

Would be nice if Slayer95 could help us and code this brilliant idea for a Metagame. Would love to play this. And if he provides me the code I can also add it to my Server and so we will have 2 Servers to play on; Pandora and Lotus!
 
Now playable in Pandora!

config/formats.js

Code:
{
        name: "No Ability",
        section: "Other Metagames",

        mod: 'noability',
        ruleset: ['Pokemon', 'Standard', 'Team Preview', 'Swagger Clause', 'Baton Pass Clause'],
        banlist: ['Uber', 'Ignore Illegal Abilities'],
        validateSet: function (pokemon) {
            pokemon.ability = 'None';
        }
    }
mods/noability/abilities.js

Code:
exports.BattleAbilities = {
    "None": {
        desc: "This Pokemon has no ability.",
        shortDesc: "This Pokemon has no ability.",
        id: "none",
        name: "None",
        rating: 1,
        num: 1
    }
};
mods/noability/scripts.js

Code:
exports.BattleScripts = {
    init: function() {
        for (var i in this.data.Pokedex) {
            // Needed because of forme changes
            this.modData('Pokedex', i).abilities['0'] = 'None';
        }
    }
};
mods/noability/formats-data.js

Code:
exports.BattleFormatsData = {
    blaziken: {
        inherit: true,
        tier: "OU"
    },
    slaking: {
        inherit: true,
        tier: "Uber"
    },
    regigigas: {
        inherit: true,
        tier: "Uber"
    },
    shayminsky: {
        inherit: true,
        tier: "OU"
    },
    genesect: {
        inherit: true,
        tier: "OU"
    },
    aegislash: {
        inherit: true,
        tier: "OU"
    },
    gengarmega: {
        inherit: true,
        tier: "OU"
    },
    kangaskhanmega: {
        inherit: true,
        tier: "OU"
    },
    lucariomega: {
        inherit: true,
        tier: "OU"
    }
};
 
Last edited:
Hey Slayer95, thanks a ton man for doing that! Is it possible for you to fix the banlist in the OP? It says Blaziken is banned when it is not. Also, it says I have an ability although I do not.
 

xJownage

Even pendulums swing both ways
go die in a hole for making that pun

So just battled unfixable, and found out that specs keldeo is a beast. Scarfchomp is also a beast, as it can check stuff quickly from looking through threats.

I am trying DD mega TTAR, since if its a reliable win condition in OU it must be one here, and I am also trying tail glow manaphy because wynaut.
 
Bumping one final time and letting this just die :[. So anyways, Mawilite is unbanned for what I hope are obvious reasons. Also, I'm thinking about unbanning Deos and also maybe Groudon. Thoughts?
 
Bumping one final time and letting this just die :[. So anyways, Mawilite is unbanned for what I hope are obvious reasons. Also, I'm thinking about unbanning Deos and also maybe Groudon. Thoughts?
How does the removal of the Deoxys formes' abilities make them less broken?
 
idk about groudon, it has stats that are really high among most pokemon, along with a great support movepool like twave and sr and deadly setup moves in sd and rp. it's not like kyub where it just has... outrage. 150 atk and 140 def with an actual movepool isn't something to mess with.
 
Unban Salamencite too, maybe? I get its stats are still very good, but without Aerilate it loses that neat as hell powerful Flying stab with no drawbacks, plus it loses Intimidate prior to mega evolve. Basically it loses the two main factors that makes it broken, and its ban doesn't feel warranted at all.
 

Pikachuun

the entire waruda machine
Code:
    {
        name: "No Ability", //"Fox Only", //"Final Destination",
        section: "Other Metagames",
       
        ruleset: ['Pokemon', 'Standard', 'Team Preview', 'Swagger Clause', 'Baton Pass Clause'],
        banlist: ['Arceus', 'Blazikenite', 'Darkrai', 'Deoxys', 'Deoxys-Attack', 'Deoxys-Defense', 'Deoxys-Speed', 'Dialga', 'Giratina', 'Giratina-Origin', 'Groudon', 'Ho-Oh', 'Kyogre', 'Lugia', 'Mewtwo', 'Palkia', 'Rayquaza', 'Reshiram', 'Xerneas', 'Yveltal', 'Zekrom', 'Soul Dew', 'Regigigas', 'Slaking'],
        onModifyPokemon: function (pokemon) {
            for (var q in pokemon.side.pokemon) {
                pokemon.side.pokemon[q].ability = 'None';
            }
        }
    },
 
I have a question, why is Blaziken unbanned, but Mega Blaziken Banned?
The same question goes for Mega Salamence, no Intimidate and no Aerialate
 

Users Who Are Viewing This Thread (Users: 1, Guests: 0)

Top