1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

53
data-asia/SV/SV7a/049.ts Normal file
View File

@ -0,0 +1,53 @@
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