1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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/SV7/084.ts Normal file
View File

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