import { Card } from "../../../interfaces" import Set from "../SV-P" const card: Card = { set: Set, name: { 'zh-tw': "鐵頭殼ex" }, illustrator: "5ban Graphics", category: "Pokemon", hp: 220, types: ["Psychic"], stage: "Basic", suffix: "EX", abilities: [{ type: "Ability", name: { 'zh-tw': "鈷藍指令" }, effect: { 'zh-tw': "只要這隻寶可夢在場上,自己的「未來」寶可夢(「鐵頭殼ex」除外)使用的招式,對對手的戰鬥寶可夢造成的傷害「+20」點。" } }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 2, regulationMark: "H" } export default card