mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-07 23:52:22 -05:00
67 lines
1.6 KiB
JavaScript
67 lines
1.6 KiB
JavaScript
exports.BattleTypeChart = {
|
|
"Bug": {
|
|
inherit: true,
|
|
HPivs: {"atk":26, "def":26, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Dark": {
|
|
inherit: true,
|
|
HPivs: {"atk":30, "def":30, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Dragon": {
|
|
inherit: true,
|
|
HPivs: {"atk":30, "def":28, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Electric": {
|
|
inherit: true,
|
|
HPivs: {"atk":28, "def":30, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Fighting": {
|
|
inherit: true,
|
|
HPivs: {"atk":24, "def":24, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Fire": {
|
|
inherit: true,
|
|
HPivs: {"atk":28, "def":24, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Flying": {
|
|
inherit: true,
|
|
HPivs: {"atk":24, "def":26, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Ghost": {
|
|
inherit: true,
|
|
HPivs: {"atk":26, "def":28, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Grass": {
|
|
inherit: true,
|
|
HPivs: {"atk":28, "def":28, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Ground": {
|
|
inherit: true,
|
|
HPivs: {"atk":24, "def":30, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Ice": {
|
|
inherit: true,
|
|
HPivs: {"atk":30, "def":26, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Poison": {
|
|
inherit: true,
|
|
HPivs: {"atk":24, "def":28, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Psychic": {
|
|
inherit: true,
|
|
HPivs: {"atk":30, "def":24, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Rock": {
|
|
inherit: true,
|
|
HPivs: {"atk":26, "def":24, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Steel": {
|
|
inherit: true,
|
|
HPivs: {"atk":26, "def":30, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
},
|
|
"Water": {
|
|
inherit: true,
|
|
HPivs: {"atk":28, "def":26, "spa":30, "spd":30, "spe":30, "hp":30}
|
|
}
|
|
};
|