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

53 lines
1.0 KiB
TypeScript
Raw Permalink 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 "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "火箭雀",
'zh-cn': "火箭雀",
ja: "ヒノヤコマ"
},
illustrator: "Julie Hang",
category: "Pokemon",
hp: 90,
types: ["Colorless"],
description: {
'zh-tw': "擁有半徑2~3公里的地盤。 絕不會輕饒任何進到 地盤裡的鳥寶可夢。",
'zh-cn': "擁有半徑2~3公里的地盤。 絕不會輕饒任何進到 地盤裡的鳥寶可夢。",
ja: "半径 2~3キロの 縄張りを 持つ。 縄張りに 入ってきた 鳥ポケモンは 容赦しない。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "高速飛行",
'zh-cn': "高速飛行",
ja: "スピードひこう"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common",
dexId: [662]
}
export default card