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

60 lines
947 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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "大王燕"
},
illustrator: "kodama",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
'zh-tw': "發現居住在森林裡的獵物時,會從高空俯衝而下。用鋒利的爪子捕捉獵物。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "電光一閃"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加40點傷害。"
},
damage: "20+",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "能量支援"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張基本能量卡附於1隻備戰寶可夢身上。"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "D"
}
export default card