import { Card } from "../../../interfaces" import Set from "../S7D" const card: Card = { set: Set, name: { 'zh-tw': "青綿鳥" }, illustrator: "Lee HyunJung", category: "Pokemon", hp: 50, types: ["Colorless"], description: { 'zh-tw': "從不疏於打理絲綿般的翅膀。一弄髒就會到水裡洗乾淨。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "偷襲" }, effect: { 'zh-tw': "擲1次硬幣若為反面,則這個招式失敗。" }, damage: 30, cost: ["Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "E" } export default card