I don't think you can vote for your own submission.leafsaber47's Byleth
Falchion's Donkey Kong
Mygavolt's Neon White
And yes, it did take me this long to realize that was happening.
I don't think you can vote for your own submission.leafsaber47's Byleth
Falchion's Donkey Kong
Mygavolt's Neon White
I hate to break it to you, but last week everyone who submitted something voted for one of their submissions.I don't think you can vote for your own submission.
And yes, it did take me this long to realize that was happening.
i said secret third thing smfhI hate to break it to you, but last week everyone who submitted something voted for one of their submissions.
oh i didn't realize it was tiered lol i thought all 3 were 1 voteYou can't give your own submission 3 points by placing it at the top of your votes.
You can, however, vote for one of your own submissions to give it 2 or 1 votes, with the caveat that there must be at least one submission you are giving more points than your own.
I hope this clears things up for voting in the future!
Ho'olheyak (F) @ Heavy-Duty Boots
Ability: Contrary
EVs: 4 Def / 252 SpA / 252 Spe
Timid Nature
- Draco Meteor
- Overheat
- Earth Power
- Slack Off / Roost
Ho'olheyak (F) @ Heavy-Duty Boots
Ability: Adaptability
EVs: 4 Def / 252 SpA / 252 Spe
Timid Nature
- Agility
- Nasty Plot
- Draco Meteor / Dragon Pulse
- Hurricane / Shadow Ball / Fire Blast
Ho'olheyak (F) @ Heavy-Duty Boots / Mental Herb
Ability: Contrary
EVs: 248 HP / 8 SpA / 252 SpD
Calm Nature
- Draco Meteor / Overheat
- Whirlwind / Defog
- Slack Off / Roost
- Taunt / Destiny Bond / U-turn
Surtr (F) @ Heavy-Duty Boots / Leftovers
Ability: Sturdy
EVs: 248 HP / 252 Def / 8 SpA
Bold Nature
- Fire Spin
- Knock Off
- Scald / Lava Plume / Will-o-Wisp
- Stealth Rock
Surtr (F) @ Heavy-Duty Boots / Leftovers
Ability: Sturdy
EVs: 248 HP / 8 Def / 252 SpA
Modest Nature
- Fire Blast / Flamethrower
- Earth Power / Psychic
- Dark Pulse
- Calm Mind
Surtr (F) @ Choice Specs
Ability: Sturdy
EVs: 4 Def / 252 SpA / 252 Spe
Timid Nature
- Eruption / Overheat
- Earth Power
- Dark Pulse
- Psychic / Scald
Aris Tendou (F) @ Choice Specs
Ability: Mega Launcher
EVs: 252 HP / 252 SpA / 4 SpD
Modest Nature
- Supernova Cannon / Flash Cannon
- Aura Sphere
- Dark Pulse
- Volt Switch / Tera Blast
Aris Tendou (F) @ Leftovers / Air Balloon
Ability: Berserk
EVs: 252 HP / 4 SpA / 252 SpD
Calm Nature
- Calm Mind
- Flash Cannon
- Earth Power / Iron Defense
- Recover
Aris Tendou (F) @ Leftovers / Room Service
Ability: Mega Launcher
EVs: 252 HP / 252 SpA / 4 SpD
IVs: 0 Spe
Quiet Nature
- Flash Cannon
- Dark Pulse
- Aura Sphere
- Recover
Suzuran (F) @ Leftovers / Mental Herb
Ability: Tinted Lens / Cloud Nine
EVs: 248 HP / 8 Def / 252 SpD
Bold / Calm Nature
- Wish
- Detect / Protect
- Mystical Fire / Morning Sun
- Foxfire Haze / Thunder Wave
Suzuran (F) @ Leftovers
Ability: Tinted Lens
EVs: 248 HP / 8 Def / 252 SpA
Modest Nature
- Calm Mind
- Stored Power
- Dazzling Gleam
- Psyshock / Foxfire Haze
onesaber: {
onModifyMove(move) {
if (move.multihit && move.multihit === 2) {
delete move.multihit;
move.basePower *= 3;
}
},
name: "One-Saber",
desc: "This Pokemon's two-hit attacks always hit once and have their power multiplied by 3.",
shortDesc: "This Pokemon's two-hit attacks always hit once with 3x power.",
rating: 3,
},
godblow: {
accuracy: 100,
basePower: 100,
category: "Physical",
name: "God Blow",
desc: "This move becomes a special attack if the user's Special Attack is greater than its Attack, including stat stage changes. This move's type effectiveness against Ghost is changed to be neutral no matter what this move's type is.",
shortDesc: "Special if user's Sp. Atk > Atk. Neutral on Ghost.",
pp: 5,
priority: 0,
flags: {contact: 1, protect: 1, mirror: 1},
onModifyMove(move, pokemon) {
if (pokemon.getStat('spa', false, true) > pokemon,getStat('atk', false, true)) move.category = 'Special';
},
ignoreImmunity: {'Ghost': true},
secondary: null,
target: "normal",
type: "Normal",
},
rhythmstrike: {
accuracy: 80,
basePower: 65,
basePowerCallback(pokemon, target, move) {
if (
!pokemon.volatiles['rhythmstrike'] || move.hit === 1 ||
target.volatiles['protect'] || target.volatiles['banefulbunker'] ||
target.volatiles['kingsshield'] || target.volatiles['spikyshield'] ||
target.side.getSideCondition('matblock')
) {
pokemon.addVolatile('rhythmstrike');
}
return move.basePower * pokemon.volatiles['rhythmstrike'].multiplier;
},
category: "Physical",
name: "Rhythm Strike",
desc: "Power is doubled if the user used this move last turn and either succeeded or was blocked by Baneful Bunker, Detect, King's Shield, Protect, Spiky Shield, or Mat Block.",
shortDesc: "Power doubles if user hit a foe or protection.",
pp: 15,
priority: 0,
flags: {protect: 1, mirror: 1},
condition: {
duration: 2,
onStart() {
this.effectData.multiplier = 1;
},
onRestart() {
this.effectData.multiplier = 2;
this.effectData.duration = 2;
},
},
secondary: null,
target: "normal",
type: "Normal",
},
reaperscurse: {
onStart(pokemon) {
if (!pokemon.hasItem('airballoon') {
pokemon.addVolatile('smackdown');
}
},
onAfterUseItem(item, pokemon) {
if (pokemon !== this.effectData.target || item.name !== 'airballoon') return;
pokemon.addVolatile('smackdown');
},
onTakeItem(item, pokemon) {
if (item.name !== 'airballoon') return;
pokemon.addVolatile('smackdown');
},
onEffectiveness(typeMod, target, type, move) {
if (type === 'Ground' && target.volatiles['smackdown']) {
return typeMod - 1;
}
return typeMod;
},
isPermanent: true,
isUnbreakable: true,
name: "Reaper's Curse",
desc: "If this Pokemon is Flying-type, then its immunity to Ground becomes a resistance, and it is prone to the effects of Spikes, Toxic Spikes, Sticky Web, and the Arena Trap Ability. The effects of Air Balloon and Telekinesis nullify the groundedness.",
shortDesc: "Flying-type: Not airborne; resistant instead of immune to Ground.",
rating: -0.5,
},
telekinesis: {
inherit: true,
condition: {
duration: 3,
onStart(target) {
if (['Diglett', 'Dugtrio', 'Palossand', 'Sandygast'].includes(target.baseSpecies.baseSpecies) ||
target.baseSpecies.name === 'Gengar-Mega') {
this.add('-immune', target);
return null;
}
if (target.hasAbility('reaperscurse')) target.removeVolatile('smackdown');
if (target.volatiles['smackdown'] || target.volatiles['ingrain']) return false;
this.add('-start', target, 'Telekinesis');
},
onAccuracyPriority: -1,
onAccuracy(accuracy, target, source, move) {
if (move && !move.ohko) return true;
},
onImmunity(type) {
if (type === 'Ground') return false;
},
onUpdate(pokemon) {
if (pokemon.baseSpecies.name === 'Gengar-Mega') {
delete pokemon.volatiles['telekinesis'];
this.add('-end', pokemon, 'Telekinesis', '[silent]');
}
},
onResidualOrder: 16,
onEnd(target) {
this.add('-end', target, 'Telekinesis');
},
},
},
venomstrike: {
accuracy: true,
basePower: 210,
category: "Physical",
name: "Venom Strike",
desc: "This move combines Poison in its type effectiveness against the target, unless the target is Steel-type.",
shortDesc: "Combines Poison in its type effectiveness against non-Steel-types.",
pp: 1,
priority: 0,
flags: {},
isZ: "eizeniumz",
onEffectiveness(typeMod, target, type, move) {
if (target.hasType('Steel')) {
return typeMod;
}
return typeMod + this.dex.getEffectiveness('Poison', type);
},
secondary: null,
target: "normal",
type: "Rock",
},
airballoon: {
inherit: true,
onStart(target) {
if (!target.ignoringItem() && !this.field.getPseudoWeather('gravity')) {
if (target.hasAbility('reaperscurse')) target.removeVolatile('smackdown');
this.add('-item', target, 'Air Balloon');
}
},
},