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 "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "毛頭小鷹",
'zh-cn': "毛頭小鷹",
ja: "ワシボン"
},
illustrator: "Nakamura Ippan",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
'zh-tw': "用尖尖的爪子刺穿獵物 後啄食。雖然也會吃樹果, 但基本上是肉食性寶可夢。",
'zh-cn': "用尖尖的爪子刺穿獵物 後啄食。雖然也會吃樹果, 但基本上是肉食性寶可夢。",
ja: "尖ったツメを 獲物に 突き立て ついばんでいる。 木の実も 食べるが 基本的に 肉食のポケモン。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "羽擊",
'zh-cn': "羽擊",
ja: "はばたく"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common",
dexId: [627]
}
export default card