1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

61 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SC1D"
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