Spaces:
Running
Running
File size: 5,343 Bytes
5c2ed06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var conditions_exports = {};
__export(conditions_exports, {
Conditions: () => Conditions
});
module.exports = __toCommonJS(conditions_exports);
const Conditions = {
brn: {
inherit: true,
onResidualOrder: 10,
onResidualSubOrder: 6
},
par: {
inherit: true,
onModifySpe(spe, pokemon) {
if (!pokemon.hasAbility("quickfeet")) {
return this.chainModify(0.25);
}
return spe;
},
onBeforeMove(pokemon) {
if (!pokemon.hasAbility("magicguard") && this.randomChance(1, 4)) {
this.add("cant", pokemon, "par");
return false;
}
}
},
slp: {
name: "slp",
effectType: "Status",
onStart(target, source, sourceEffect) {
if (sourceEffect && sourceEffect.effectType === "Move") {
this.add("-status", target, "slp", `[from] move: ${sourceEffect.name}`);
} else {
this.add("-status", target, "slp");
}
this.effectState.time = this.random(2, 6);
if (target.removeVolatile("nightmare")) {
this.add("-end", target, "Nightmare", "[silent]");
}
},
onBeforeMovePriority: 10,
onBeforeMove(pokemon, target, move) {
if (pokemon.hasAbility("earlybird")) {
pokemon.statusState.time--;
}
pokemon.statusState.time--;
if (pokemon.statusState.time <= 0) {
pokemon.cureStatus();
return;
}
this.add("cant", pokemon, "slp");
if (move.sleepUsable) {
return;
}
return false;
}
},
psn: {
inherit: true,
onResidualOrder: 10,
onResidualSubOrder: 6
},
tox: {
inherit: true,
onResidualOrder: 10,
onResidualSubOrder: 6
},
confusion: {
inherit: true,
onBeforeMove(pokemon) {
pokemon.volatiles["confusion"].time--;
if (!pokemon.volatiles["confusion"].time) {
pokemon.removeVolatile("confusion");
return;
}
this.add("-activate", pokemon, "confusion");
if (this.randomChance(1, 2)) {
return;
}
const damage = this.actions.getDamage(pokemon, pokemon, 40);
if (typeof damage !== "number")
throw new Error("Confusion damage not dealt");
this.damage(damage, pokemon, pokemon, {
id: "confused",
effectType: "Move",
type: "???"
});
return false;
}
},
frz: {
inherit: true,
onBeforeMove(pokemon, target, move) {
if (this.randomChance(1, 5)) {
pokemon.cureStatus();
return;
}
if (move.flags["defrost"])
return;
this.add("cant", pokemon, "frz");
return false;
}
},
substitutebroken: {
noCopy: true
},
trapped: {
inherit: true,
noCopy: false
},
trapper: {
inherit: true,
noCopy: false
},
partiallytrapped: {
inherit: true,
durationCallback(target, source) {
if (source.hasItem("gripclaw"))
return 6;
return this.random(3, 7);
},
onResidualOrder: 10,
onResidualSubOrder: 9
},
choicelock: {
inherit: true,
onStart(pokemon) {
if (!pokemon.lastMove)
return false;
this.effectState.move = pokemon.lastMove.id;
}
},
futuremove: {
inherit: true,
onResidualOrder: 11
},
stall: {
// In gen 3-4, the chance of protect succeeding does not fall below 1/8.
// See http://upokecenter.dreamhosters.com/dex/?lang=en&move=182
inherit: true,
counterMax: 8
},
raindance: {
inherit: true,
onFieldResidualOrder: 8
},
sunnyday: {
inherit: true,
onFieldResidualOrder: 8
},
sandstorm: {
inherit: true,
onFieldResidualOrder: 8
},
hail: {
inherit: true,
onFieldResidualOrder: 8
},
// Arceus's true typing for all its formes is Normal, and it's only Multitype
// that changes its type, but its formes are specified to be their corresponding
// type in the Pokedex, so that needs to be overridden. Without Multitype it
// starts as Normal type, but its type can be changed by other effects.
// This is mainly relevant for Hackmons Cup and Balanced Hackmons.
arceus: {
name: "Arceus",
onBeforeSwitchIn(pokemon) {
pokemon.setType("Normal");
},
onSwitchIn(pokemon) {
if (pokemon.ability === "multitype") {
const item = pokemon.getItem();
const targetForme = item?.onPlate ? "Arceus-" + item.onPlate : "Arceus";
if (pokemon.species.name !== targetForme) {
pokemon.formeChange(targetForme);
}
}
}
}
};
//# sourceMappingURL=conditions.js.map
|