Skip to content

Commit

Permalink
kolohe namechange
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisXV committed May 1, 2024
1 parent a78523d commit 9cf0b69
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 68 deletions.
52 changes: 26 additions & 26 deletions data/mods/gen9ssb/conditions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1267,6 +1267,29 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
this.add(`c:|${getName('Klmondo')}|It's Klmondover`);
},
},
kolohe: {
noCopy: true,
onStart(pokemon) {
const foe = enemyStaff(pokemon);
if (foe === 'Rumia') {
this.add(`c:|${getName('kolohe ✮彡')}|You come around here often?`);
} else if (foe === 'spoo') {
this.add(`c:|${getName('kolohe ✮彡')}|Big bald head spotted...`);
} else if (foe === 'ausma') {
this.add(`c:|${getName('kolohe ✮彡')}|The weekly Smogon furry convention starts NOW`);
} else if (foe === 'Peary') {
this.add(`c:|${getName('kolohe ✮彡')}|Any arters or culturers?`);
} else {
this.add(`c:|${getName('kolohe ✮彡')}|Hey, howzit!`);
}
},
onSwitchOut() {
this.add(`c:|${getName('kolohe ✮彡')}|Wait, I just got started!`);
},
onFaint() {
this.add(`c:|${getName('kolohe ✮彡')}|change da world... my final message. goodbye`);
},
},
kry: {
noCopy: true,
onStart() {
Expand Down Expand Up @@ -1936,21 +1959,21 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
rumia: {
noCopy: true,
onStart(pokemon) {
if (enemyStaff(pokemon) === 'umowu') {
if (enemyStaff(pokemon) === 'kolohe') {
this.add(`c:|${getName('Rumia')}|OMG who could that be (⁠●⁠♡⁠∀⁠♡⁠)`);
} else {
this.add(`c:|${getName('Rumia')}|is the mon in front of me the edible kind?`);
}
},
onSwitchOut(pokemon) {
if (enemyStaff(pokemon) === 'umowu') {
if (enemyStaff(pokemon) === 'kolohe') {
this.add(`c:|${getName('Rumia')}|i cant bring myself to do this...`);
} else {
this.add(`c:|${getName('Rumia')}|brb ^_^`);
}
},
onFaint(pokemon) {
if (enemyStaff(pokemon) === 'umowu') {
if (enemyStaff(pokemon) === 'kolohe') {
this.add(`c:|${getName('Rumia')}|this is the best way to go out...`);
} else {
this.add(`c:|${getName('Rumia')}|is that sooooo...`);
Expand Down Expand Up @@ -2390,29 +2413,6 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
this.add(`c:|${getName('UT')}|__swaying as the room burnded down__`);
},
},
umowu: {
noCopy: true,
onStart(pokemon) {
const foe = enemyStaff(pokemon);
if (foe === 'Rumia') {
this.add(`c:|${getName('umowu ✮彡')}|You come around here often?`);
} else if (foe === 'spoo') {
this.add(`c:|${getName('umowu ✮彡')}|Big bald head spotted...`);
} else if (foe === 'ausma') {
this.add(`c:|${getName('umowu ✮彡')}|The weekly Smogon furry convention starts NOW`);
} else if (foe === 'Peary') {
this.add(`c:|${getName('umowu ✮彡')}|Any arters or culturers?`);
} else {
this.add(`c:|${getName('umowu ✮彡')}|Hey, howzit!`);
}
},
onSwitchOut() {
this.add(`c:|${getName('umowu ✮彡')}|Wait, I just got started!`);
},
onFaint() {
this.add(`c:|${getName('umowu ✮彡')}|change da world... my final message. goodbye`);
},
},
valerian: {
noCopy: true,
onStart() {
Expand Down
58 changes: 29 additions & 29 deletions data/mods/gen9ssb/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2945,6 +2945,35 @@ export const Moves: {[k: string]: ModdedMoveData} = {
type: "Water",
},

// kolohe
hangten: {
accuracy: 100,
basePower: 75,
category: "Special",
name: "Hang Ten",
shortDesc: "User sets Electric Terrain on hit.",
pp: 10,
priority: 0,
flags: {protect: 1, mirror: 1},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Stoked Sparksurfer', target);
this.add('-anim', source, 'Surf', target);
},
secondary: {
chance: 100,
self: {
onHit() {
this.field.setTerrain('electricterrain');
},
},
},
target: "normal",
type: "Water",
},

// Kry
attackofopportunity: {
accuracy: 100,
Expand Down Expand Up @@ -5238,35 +5267,6 @@ export const Moves: {[k: string]: ModdedMoveData} = {
type: "Flying",
},

// umowu
hangten: {
accuracy: 100,
basePower: 75,
category: "Special",
name: "Hang Ten",
shortDesc: "User sets Electric Terrain on hit.",
pp: 10,
priority: 0,
flags: {protect: 1, mirror: 1},
onTryMove() {
this.attrLastMove('[still]');
},
onPrepareHit(target, source) {
this.add('-anim', source, 'Stoked Sparksurfer', target);
this.add('-anim', source, 'Surf', target);
},
secondary: {
chance: 100,
self: {
onHit() {
this.field.setTerrain('electricterrain');
},
},
},
target: "normal",
type: "Water",
},

// Valerian
firststrike: {
accuracy: 100,
Expand Down
14 changes: 7 additions & 7 deletions data/mods/gen9ssb/pokedex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,13 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = {
abilities: {0: "Super Skilled"},
},

// kolohe
pikachu: {
inherit: true,
baseStats: {hp: 45, atk: 80, def: 50, spa: 75, spd: 60, spe: 120},
abilities: {0: "Soul Surfer"},
},

// Kry
mawile: {
inherit: true,
Expand Down Expand Up @@ -982,13 +989,6 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = {
abilities: {0: "Gale Guard"},
},

// umowu
pikachu: {
inherit: true,
baseStats: {hp: 45, atk: 80, def: 50, spa: 75, spd: 60, spe: 120},
abilities: {0: "Soul Surfer"},
},

// Valerian
lucario: {
inherit: true,
Expand Down
12 changes: 6 additions & 6 deletions data/mods/gen9ssb/random-teams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,12 @@ export const ssbSets: SSBSets = {
signatureMove: 'The Better Water Shuriken',
evs: {atk: 252, def: 4, spe: 252}, nature: 'Adamant', teraType: 'Water',
},
'kolohe ✮彡': {
species: 'Pikachu', ability: 'Soul Surfer', item: 'Light Ball', gender: '',
moves: ['Thunder', 'Volt Switch', 'Bouncy Bubble'],
signatureMove: 'Hang Ten',
evs: {hp: 4, spa: 252, spe: 252}, nature: 'Timid', teraType: 'Water',
},
Kry: {
species: 'Mawile', ability: 'Flash Freeze', item: 'Mawilite', gender: 'M',
moves: ['Sucker Punch', 'Fire Lash', 'Play Rough'],
Expand Down Expand Up @@ -906,12 +912,6 @@ export const ssbSets: SSBSets = {
signatureMove: 'My Boys',
evs: {hp: 252, def: 4, spe: 252}, nature: 'Jolly', teraType: 'Flying',
},
umowu: {
species: 'Pikachu', ability: 'Soul Surfer', item: 'Light Ball', gender: '',
moves: ['Thunder', 'Volt Switch', 'Bouncy Bubble'],
signatureMove: 'Hang Ten',
evs: {hp: 4, spa: 252, spe: 252}, nature: 'Timid', teraType: 'Water',
},
Valerian: {
species: 'Lucario', ability: 'Full Bloom', item: 'Clear Amulet', gender: 'F',
moves: ['Bullet Punch', 'Mach Punch', 'Parting Shot'],
Expand Down

0 comments on commit 9cf0b69

Please sign in to comment.