mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-28 03:02:24 +02:00
removed console.log messages used for debugging
This commit is contained in:
parent
fc91592d4b
commit
754bc20fff
@ -5070,7 +5070,6 @@ export class VariableMoveTypeChartAttr extends MoveAttr {
|
|||||||
* @returns true if application of the attribute succeeds
|
* @returns true if application of the attribute succeeds
|
||||||
*/
|
*/
|
||||||
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
||||||
console.log("Did not call SpectralThiefAttr correctly");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -5080,7 +5079,6 @@ export class VariableMoveTypeChartAttr extends MoveAttr {
|
|||||||
*/
|
*/
|
||||||
export class FreezeDryAttr extends VariableMoveTypeChartAttr {
|
export class FreezeDryAttr extends VariableMoveTypeChartAttr {
|
||||||
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
apply(user: Pokemon, target: Pokemon, move: Move, args: any[]): boolean {
|
||||||
console.log("Did call SpectralThiefAttr correctly");
|
|
||||||
const multiplier = args[0] as Utils.NumberHolder;
|
const multiplier = args[0] as Utils.NumberHolder;
|
||||||
const defType = args[1] as Type;
|
const defType = args[1] as Type;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user