Skip to content

Commit 9cf0b69

Browse files
committed
kolohe namechange
1 parent a78523d commit 9cf0b69

File tree

4 files changed

+68
-68
lines changed

4 files changed

+68
-68
lines changed

data/mods/gen9ssb/conditions.ts

+26-26
Original file line numberDiff line numberDiff line change
@@ -1267,6 +1267,29 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
12671267
this.add(`c:|${getName('Klmondo')}|It's Klmondover`);
12681268
},
12691269
},
1270+
kolohe: {
1271+
noCopy: true,
1272+
onStart(pokemon) {
1273+
const foe = enemyStaff(pokemon);
1274+
if (foe === 'Rumia') {
1275+
this.add(`c:|${getName('kolohe ✮彡')}|You come around here often?`);
1276+
} else if (foe === 'spoo') {
1277+
this.add(`c:|${getName('kolohe ✮彡')}|Big bald head spotted...`);
1278+
} else if (foe === 'ausma') {
1279+
this.add(`c:|${getName('kolohe ✮彡')}|The weekly Smogon furry convention starts NOW`);
1280+
} else if (foe === 'Peary') {
1281+
this.add(`c:|${getName('kolohe ✮彡')}|Any arters or culturers?`);
1282+
} else {
1283+
this.add(`c:|${getName('kolohe ✮彡')}|Hey, howzit!`);
1284+
}
1285+
},
1286+
onSwitchOut() {
1287+
this.add(`c:|${getName('kolohe ✮彡')}|Wait, I just got started!`);
1288+
},
1289+
onFaint() {
1290+
this.add(`c:|${getName('kolohe ✮彡')}|change da world... my final message. goodbye`);
1291+
},
1292+
},
12701293
kry: {
12711294
noCopy: true,
12721295
onStart() {
@@ -1936,21 +1959,21 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
19361959
rumia: {
19371960
noCopy: true,
19381961
onStart(pokemon) {
1939-
if (enemyStaff(pokemon) === 'umowu') {
1962+
if (enemyStaff(pokemon) === 'kolohe') {
19401963
this.add(`c:|${getName('Rumia')}|OMG who could that be (⁠●⁠♡⁠∀⁠♡⁠)`);
19411964
} else {
19421965
this.add(`c:|${getName('Rumia')}|is the mon in front of me the edible kind?`);
19431966
}
19441967
},
19451968
onSwitchOut(pokemon) {
1946-
if (enemyStaff(pokemon) === 'umowu') {
1969+
if (enemyStaff(pokemon) === 'kolohe') {
19471970
this.add(`c:|${getName('Rumia')}|i cant bring myself to do this...`);
19481971
} else {
19491972
this.add(`c:|${getName('Rumia')}|brb ^_^`);
19501973
}
19511974
},
19521975
onFaint(pokemon) {
1953-
if (enemyStaff(pokemon) === 'umowu') {
1976+
if (enemyStaff(pokemon) === 'kolohe') {
19541977
this.add(`c:|${getName('Rumia')}|this is the best way to go out...`);
19551978
} else {
19561979
this.add(`c:|${getName('Rumia')}|is that sooooo...`);
@@ -2390,29 +2413,6 @@ export const Conditions: {[k: string]: ModdedConditionData & {innateName?: strin
23902413
this.add(`c:|${getName('UT')}|__swaying as the room burnded down__`);
23912414
},
23922415
},
2393-
umowu: {
2394-
noCopy: true,
2395-
onStart(pokemon) {
2396-
const foe = enemyStaff(pokemon);
2397-
if (foe === 'Rumia') {
2398-
this.add(`c:|${getName('umowu ✮彡')}|You come around here often?`);
2399-
} else if (foe === 'spoo') {
2400-
this.add(`c:|${getName('umowu ✮彡')}|Big bald head spotted...`);
2401-
} else if (foe === 'ausma') {
2402-
this.add(`c:|${getName('umowu ✮彡')}|The weekly Smogon furry convention starts NOW`);
2403-
} else if (foe === 'Peary') {
2404-
this.add(`c:|${getName('umowu ✮彡')}|Any arters or culturers?`);
2405-
} else {
2406-
this.add(`c:|${getName('umowu ✮彡')}|Hey, howzit!`);
2407-
}
2408-
},
2409-
onSwitchOut() {
2410-
this.add(`c:|${getName('umowu ✮彡')}|Wait, I just got started!`);
2411-
},
2412-
onFaint() {
2413-
this.add(`c:|${getName('umowu ✮彡')}|change da world... my final message. goodbye`);
2414-
},
2415-
},
24162416
valerian: {
24172417
noCopy: true,
24182418
onStart() {

data/mods/gen9ssb/moves.ts

+29-29
Original file line numberDiff line numberDiff line change
@@ -2945,6 +2945,35 @@ export const Moves: {[k: string]: ModdedMoveData} = {
29452945
type: "Water",
29462946
},
29472947

2948+
// kolohe
2949+
hangten: {
2950+
accuracy: 100,
2951+
basePower: 75,
2952+
category: "Special",
2953+
name: "Hang Ten",
2954+
shortDesc: "User sets Electric Terrain on hit.",
2955+
pp: 10,
2956+
priority: 0,
2957+
flags: {protect: 1, mirror: 1},
2958+
onTryMove() {
2959+
this.attrLastMove('[still]');
2960+
},
2961+
onPrepareHit(target, source) {
2962+
this.add('-anim', source, 'Stoked Sparksurfer', target);
2963+
this.add('-anim', source, 'Surf', target);
2964+
},
2965+
secondary: {
2966+
chance: 100,
2967+
self: {
2968+
onHit() {
2969+
this.field.setTerrain('electricterrain');
2970+
},
2971+
},
2972+
},
2973+
target: "normal",
2974+
type: "Water",
2975+
},
2976+
29482977
// Kry
29492978
attackofopportunity: {
29502979
accuracy: 100,
@@ -5238,35 +5267,6 @@ export const Moves: {[k: string]: ModdedMoveData} = {
52385267
type: "Flying",
52395268
},
52405269

5241-
// umowu
5242-
hangten: {
5243-
accuracy: 100,
5244-
basePower: 75,
5245-
category: "Special",
5246-
name: "Hang Ten",
5247-
shortDesc: "User sets Electric Terrain on hit.",
5248-
pp: 10,
5249-
priority: 0,
5250-
flags: {protect: 1, mirror: 1},
5251-
onTryMove() {
5252-
this.attrLastMove('[still]');
5253-
},
5254-
onPrepareHit(target, source) {
5255-
this.add('-anim', source, 'Stoked Sparksurfer', target);
5256-
this.add('-anim', source, 'Surf', target);
5257-
},
5258-
secondary: {
5259-
chance: 100,
5260-
self: {
5261-
onHit() {
5262-
this.field.setTerrain('electricterrain');
5263-
},
5264-
},
5265-
},
5266-
target: "normal",
5267-
type: "Water",
5268-
},
5269-
52705270
// Valerian
52715271
firststrike: {
52725272
accuracy: 100,

data/mods/gen9ssb/pokedex.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,13 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = {
494494
abilities: {0: "Super Skilled"},
495495
},
496496

497+
// kolohe
498+
pikachu: {
499+
inherit: true,
500+
baseStats: {hp: 45, atk: 80, def: 50, spa: 75, spd: 60, spe: 120},
501+
abilities: {0: "Soul Surfer"},
502+
},
503+
497504
// Kry
498505
mawile: {
499506
inherit: true,
@@ -982,13 +989,6 @@ export const Pokedex: {[k: string]: ModdedSpeciesData} = {
982989
abilities: {0: "Gale Guard"},
983990
},
984991

985-
// umowu
986-
pikachu: {
987-
inherit: true,
988-
baseStats: {hp: 45, atk: 80, def: 50, spa: 75, spd: 60, spe: 120},
989-
abilities: {0: "Soul Surfer"},
990-
},
991-
992992
// Valerian
993993
lucario: {
994994
inherit: true,

data/mods/gen9ssb/random-teams.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,12 @@ export const ssbSets: SSBSets = {
517517
signatureMove: 'The Better Water Shuriken',
518518
evs: {atk: 252, def: 4, spe: 252}, nature: 'Adamant', teraType: 'Water',
519519
},
520+
'kolohe ✮彡': {
521+
species: 'Pikachu', ability: 'Soul Surfer', item: 'Light Ball', gender: '',
522+
moves: ['Thunder', 'Volt Switch', 'Bouncy Bubble'],
523+
signatureMove: 'Hang Ten',
524+
evs: {hp: 4, spa: 252, spe: 252}, nature: 'Timid', teraType: 'Water',
525+
},
520526
Kry: {
521527
species: 'Mawile', ability: 'Flash Freeze', item: 'Mawilite', gender: 'M',
522528
moves: ['Sucker Punch', 'Fire Lash', 'Play Rough'],
@@ -906,12 +912,6 @@ export const ssbSets: SSBSets = {
906912
signatureMove: 'My Boys',
907913
evs: {hp: 252, def: 4, spe: 252}, nature: 'Jolly', teraType: 'Flying',
908914
},
909-
umowu: {
910-
species: 'Pikachu', ability: 'Soul Surfer', item: 'Light Ball', gender: '',
911-
moves: ['Thunder', 'Volt Switch', 'Bouncy Bubble'],
912-
signatureMove: 'Hang Ten',
913-
evs: {hp: 4, spa: 252, spe: 252}, nature: 'Timid', teraType: 'Water',
914-
},
915915
Valerian: {
916916
species: 'Lucario', ability: 'Full Bloom', item: 'Clear Amulet', gender: 'F',
917917
moves: ['Bullet Punch', 'Mach Punch', 'Parting Shot'],

0 commit comments

Comments
 (0)