SSB: Remove xJoelituh

This commit is contained in:
Annika 2021-01-03 01:24:19 -08:00
parent 49e9b26454
commit bee946e822
3 changed files with 0 additions and 52 deletions

View File

@ -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) {

View File

@ -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,

View File

@ -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'],