mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-04 07:22:19 +02:00
Remove log statements
This commit is contained in:
parent
ccd6a15615
commit
717554063b
@ -630,19 +630,10 @@ export class MoveTypeChangeAttr extends PreAttackAbAttr {
|
|||||||
}
|
}
|
||||||
|
|
||||||
applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: PokemonMove, args: any[]): boolean {
|
applyPreAttack(pokemon: Pokemon, passive: boolean, defender: Pokemon, move: PokemonMove, args: any[]): boolean {
|
||||||
console.log("LOOOK HERE")
|
|
||||||
console.log(this.condition(pokemon, defender, move.getMove()))
|
|
||||||
if (this.condition(pokemon, defender, move.getMove())) {
|
if (this.condition(pokemon, defender, move.getMove())) {
|
||||||
console.log("START HERE");
|
|
||||||
console.log(args);
|
|
||||||
console.log("blah");
|
|
||||||
const type = (args[0] as Utils.IntegerHolder);
|
const type = (args[0] as Utils.IntegerHolder);
|
||||||
type.value = this.newType;
|
type.value = this.newType;
|
||||||
console.log("blah3");
|
|
||||||
(args[1] as Utils.NumberHolder).value *= this.powerMultiplier;
|
(args[1] as Utils.NumberHolder).value *= this.powerMultiplier;
|
||||||
console.log("blah4)");
|
|
||||||
console.log(args);
|
|
||||||
console.log("blah2");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user