import { Card } from "../../../interfaces" import Set from "../SVD" const card: Card = { set: Set, name: { 'zh-tw': "超能豔鴕" }, illustrator: "Hitoshi Ariga", category: "Pokemon", hp: 110, types: ["Psychic"], description: { 'zh-tw': "會從大大的眼睛放出精神力量讓對手無法動彈。 有別外表,性格非常粗暴。" }, stage: "Stage1", attacks: [{ name: { 'zh-tw': "眼力" }, effect: { 'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。" }, damage: 20, cost: ["Psychic"] }, { name: { 'zh-tw': "精神強念" }, effect: { 'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×50點傷害。" }, damage: "30+", cost: ["Psychic", "Colorless", "Colorless"] }], weaknesses: [{ type: "Darkness", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 0, regulationMark: "G" } export default card