Spaces:
Running
Running
File size: 3,283 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 |
export const Conditions: import('../../../sim/dex-conditions').ModdedConditionDataTable = {
brn: {
name: 'brn',
effectType: 'Status',
onStart(target) {
this.add('-status', target, 'brn');
},
onAfterMoveSelfPriority: 2,
onAfterMoveSelf(pokemon) {
this.damage(this.clampIntRange(Math.floor(pokemon.maxhp / 16), 1));
},
onAfterSwitchInSelf(pokemon) {
this.damage(this.clampIntRange(Math.floor(pokemon.maxhp / 16), 1));
},
},
par: {
name: 'par',
effectType: 'Status',
onStart(target) {
this.add('-status', target, 'par');
},
onBeforeMovePriority: 2,
onBeforeMove(pokemon) {
if (this.randomChance(63, 256)) {
this.add('cant', pokemon, 'par');
pokemon.removeVolatile('bide');
pokemon.removeVolatile('lockedmove');
pokemon.removeVolatile('twoturnmove');
pokemon.removeVolatile('invulnerability');
pokemon.removeVolatile('partialtrappinglock');
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');
}
// 1-3 turns
this.effectState.startTime = this.random(1, 4);
this.effectState.time = this.effectState.startTime;
if (target.removeVolatile('nightmare')) {
this.add('-end', target, 'Nightmare', '[silent]');
}
},
onBeforeMovePriority: 2,
onBeforeMove(pokemon, target, move) {
pokemon.statusState.time--;
this.add('cant', pokemon, 'slp');
pokemon.lastMove = null;
return false;
},
onAfterMoveSelf(pokemon) {
if (pokemon.statusState.time <= 0) pokemon.cureStatus();
},
},
frz: {
name: 'frz',
effectType: 'Status',
onStart(target) {
this.add('-status', target, 'frz');
},
onBeforeMovePriority: 2,
onBeforeMove(pokemon, target, move) {
this.add('cant', pokemon, 'frz');
pokemon.lastMove = null;
return false;
},
onHit(target, source, move) {
if (move.type === 'Fire' && move.category !== 'Status') {
target.cureStatus();
}
},
},
psn: {
name: 'psn',
effectType: 'Status',
onStart(target) {
this.add('-status', target, 'psn');
},
onAfterMoveSelfPriority: 2,
onAfterMoveSelf(pokemon) {
this.damage(this.clampIntRange(Math.floor(pokemon.maxhp / 16), 1));
},
onAfterSwitchInSelf(pokemon) {
this.damage(this.clampIntRange(Math.floor(pokemon.maxhp / 16), 1));
},
},
confusion: {
inherit: true,
onStart(target) {
this.add('-start', target, 'confusion');
this.effectState.time = this.random(2, 6);
},
},
flinch: {
inherit: true,
onStart() {},
},
partiallytrapped: {
name: 'partiallytrapped',
duration: 2,
onBeforeMovePriority: 1,
onStart(target, source, effect) {
this.add('-activate', target, `move: ${effect}`, `[of] ${source}`);
},
onBeforeMove(pokemon) {
if (this.effectState.source && (!this.effectState.source.isActive || this.effectState.source.hp <= 0)) {
pokemon.removeVolatile('partiallytrapped');
return;
}
this.add('cant', pokemon, 'partiallytrapped');
return false;
},
onEnd(pokemon) {
this.add('-end', pokemon, this.effectState.sourceEffect, '[partiallytrapped]');
},
},
};
|