mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-26 10:48:53 -05:00
SSB: Remove xJoelituh
This commit is contained in:
parent
49e9b26454
commit
bee946e822
|
|
@ -1710,20 +1710,6 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
|
|||
this.add(`c|${getName('vooper')}|I guess Kung Fu isn't for everyone...`);
|
||||
},
|
||||
},
|
||||
xjoelituh: {
|
||||
noCopy: true,
|
||||
onStart() {
|
||||
this.add(`c|${getName('xJoelituh')}|Hey, how can I help you?`);
|
||||
},
|
||||
onSwitchOut() {
|
||||
this.add(`c|${getName('xJoelituh')}|Hold on, I need a second opinion.`);
|
||||
},
|
||||
onFaint() {
|
||||
let str = '';
|
||||
for (let x = 0; x < 10; x++) str += String.fromCharCode(48 + this.random(79));
|
||||
this.add(`c|${getName('xJoelituh')}|${str} ok`);
|
||||
},
|
||||
},
|
||||
yuki: {
|
||||
noCopy: true,
|
||||
onStart(target, pokemon) {
|
||||
|
|
|
|||
|
|
@ -5005,38 +5005,6 @@ export const Moves: {[k: string]: ModdedMoveData} = {
|
|||
type: "Dark",
|
||||
},
|
||||
|
||||
// xJoelituh
|
||||
burnbone: {
|
||||
accuracy: 90,
|
||||
basePower: 0,
|
||||
category: "Status",
|
||||
desc: "Burns the target, and the user heals 33% of their maximum HP, rounded down, if the move successfully burns.",
|
||||
shortDesc: "Applies burn. Heals 33% HP if this move burns.",
|
||||
name: "Burn Bone",
|
||||
isNonstandard: "Custom",
|
||||
gen: 8,
|
||||
pp: 10,
|
||||
priority: 1,
|
||||
flags: {protect: 1, reflectable: 1},
|
||||
onTryMove() {
|
||||
this.attrLastMove('[still]');
|
||||
},
|
||||
onPrepareHit(target, source) {
|
||||
this.add('-anim', source, 'Will-O-Wisp', target);
|
||||
this.add('-anim', source, 'Shadow Bone', target);
|
||||
},
|
||||
onHit(target, source, move) {
|
||||
if (target.trySetStatus('brn', source, move)) {
|
||||
this.heal(source.baseMaxhp * 0.33, source);
|
||||
return;
|
||||
}
|
||||
return false;
|
||||
},
|
||||
secondary: null,
|
||||
target: "normal",
|
||||
type: "Fire",
|
||||
},
|
||||
|
||||
// yuki
|
||||
classchange: {
|
||||
accuracy: true,
|
||||
|
|
|
|||
|
|
@ -787,12 +787,6 @@ export const ssbSets: SSBSets = {
|
|||
signatureMove: 'Panda Express',
|
||||
evs: {hp: 252, atk: 252, spd: 4}, ivs: {atk: 0}, nature: 'Adamant',
|
||||
},
|
||||
xJoelituh: {
|
||||
species: 'Marowak-Alola', ability: 'Mountaineer', item: 'Rare Bone', gender: 'M',
|
||||
moves: ['Poltergeist', 'Fire Punch', 'Stomping Tantrum'],
|
||||
signatureMove: 'Burn Bone',
|
||||
evs: {hp: 248, atk: 8, spd: 252}, nature: 'Careful', shiny: true,
|
||||
},
|
||||
yuki: {
|
||||
species: 'Pikachu-Cosplay', ability: 'Combat Training', item: 'Light Ball', gender: 'F',
|
||||
moves: ['Quick Attack'],
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user