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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/S/S4/016.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "烈箭鷹V"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 190,
types: ["Fire"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "急速飛行"
},
effect: {
'zh-tw': "這個招式在先攻玩家的最初回合也可使用。將自己的手牌全部丟棄從牌庫抽出6張卡。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "紅蓮之翼"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 160,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "D"
}
export default card