Skip to content

Commit 3911011

Browse files
committed
Fix some bugs
1 parent de4542d commit 3911011

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

data/mods/gen9ssb/abilities.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -731,10 +731,10 @@ export const Abilities: {[k: string]: ModdedAbilityData} = {
731731
shortDesc: "Moves drain 37%. Allies heal 5% HP. <25% HP, moves drain 114%, allies get 10%.",
732732
desc: "All moves heal 37% of damage dealt. Unfainted allies heal 5% HP at the end of each turn. If this Pokemon's HP is less than 25%, moves heal 114% of damage dealt, and allies restore 10% of their health.",
733733
name: "Coalescence",
734-
onModifyMove(move, pokemon, target) {
734+
onModifyMove(move, source, target) {
735735
if (move.category !== "Status") {
736736
// move.flags['heal'] = 1; // For Heal Block
737-
if (pokemon.hp > pokemon.maxhp / 4) {
737+
if (source.hp > source.maxhp / 4) {
738738
move.drain = [37, 100];
739739
} else {
740740
move.drain = [114, 100];
@@ -2022,7 +2022,7 @@ export const Abilities: {[k: string]: ModdedAbilityData} = {
20222022
onModifyMove(move, source, target) {
20232023
if (target?.beingCalledBack || target?.switchFlag) move.accuracy = true;
20242024
},
2025-
onTryHit(target, pokemon) {
2025+
onTryHit(source, target) {
20262026
target.side.removeSideCondition('hotpursuit');
20272027
},
20282028
condition: {

data/mods/gen9ssb/moves.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -5866,15 +5866,13 @@ export const Moves: {[k: string]: ModdedMoveData} = {
58665866
this.attrLastMove('[still]');
58675867
if (this.randomChance(1, 256)) {
58685868
this.add('-fail', pokemon);
5869+
this.add('-message', '(In Gen 1, moves with 100% accuracy have a 1/256 chance to miss.)');
58695870
return false;
58705871
}
58715872
},
58725873
onPrepareHit(target, source) {
58735874
this.add('-anim', source, "Hex", target);
58745875
},
5875-
onMoveFail() {
5876-
this.add('-message', '(In Gen 1, moves with 100% accuracy have a 1/256 chance to miss.)');
5877-
},
58785876
secondary: null,
58795877
target: "normal",
58805878
type: "Normal",

0 commit comments

Comments
 (0)