mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-21 06:37:09 -05:00
The immunity also applies to any moves, even non-Status, called by other Prankster-boosted moves.
28 lines
376 B
JavaScript
28 lines
376 B
JavaScript
'use strict';
|
|
|
|
exports.BattleTypeChart = {
|
|
"Dark": {
|
|
inherit: true,
|
|
damageTaken: {
|
|
"Bug": 1,
|
|
"Dark": 2,
|
|
"Dragon": 0,
|
|
"Electric": 0,
|
|
"Fairy": 1,
|
|
"Fighting": 1,
|
|
"Fire": 0,
|
|
"Flying": 0,
|
|
"Ghost": 2,
|
|
"Grass": 0,
|
|
"Ground": 0,
|
|
"Ice": 0,
|
|
"Normal": 0,
|
|
"Poison": 0,
|
|
"Psychic": 3,
|
|
"Rock": 0,
|
|
"Steel": 0,
|
|
"Water": 0,
|
|
},
|
|
},
|
|
};
|