import { Card } from "../../../interfaces" import Set from "../SVD" const card: Card = { set: Set, name: { 'zh-tw': "怒鸚哥" }, illustrator: "Oswaldo KATO", category: "Pokemon", hp: 70, types: ["Colorless"], description: { 'zh-tw': "綠色羽毛的怒鸚哥勢力最為龐大。在覓食時段的 早晨和夜晚會非常吵鬧。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "呼朋引伴" }, effect: { 'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡,放置於備戰區。並且重洗牌庫。" }, cost: ["Colorless"] }, { name: { 'zh-tw': "飛翔" }, effect: { 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。" }, damage: 60, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "G" } export default card