import { Card } from "../../../interfaces" import Set from "../S4a" const card: Card = { set: Set, name: { 'zh-tw': "古月鳥" }, illustrator: "Mitsuhiro Arita", category: "Pokemon", hp: 110, types: ["Water"], description: { 'zh-tw': "雖然擁有一擊定勝負的威力,但因為記性實在太差,對戰還沒結束就會忘記對手是誰。" }, stage: "Basic", attacks: [{ name: { 'zh-tw': "潛水" }, effect: { 'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,這隻寶可夢不會受到招式的傷害與效果的影響。" }, damage: 20, cost: ["Water"] }, { name: { 'zh-tw': "水炮" }, effect: { 'zh-tw': "增加這隻寶可夢身上附加的【水】能量的數量×20點傷害。" }, damage: "50+", cost: ["Colorless", "Colorless", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "D" } export default card