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

56 lines
911 B
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 "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "古月鳥"
},
illustrator: "Midori Harada",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
'zh-tw': "雖然擁有一擊定勝負的威力,但因為記性實在太差, 對戰還沒結束就會忘記對手是誰。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "放逐供應"
},
effect: {
'zh-tw': "若自己的放逐區有4張以上的卡則這隻寶可夢使用招式所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "裝傻噴吐"
},
effect: {
'zh-tw': "這個招式的傷害不計算弱點。"
},
damage: 110,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card