1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

57
data-asia/S/S11/082.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "大比鳥V"
},
illustrator: "Saki Hayashiro",
category: "Pokemon",
hp: 210,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "消逝之翼"
},
effect: {
'zh-tw': "若這隻寶可夢在備戰區則在自己的回合時可使用1次。將這隻寶可夢與附加的卡全部放回自己的牌庫並重洗。"
}
}],
attacks: [{
name: {
'zh-tw': "飛行衝浪"
},
effect: {
'zh-tw': "若場上有自己的競技場卡則增加80點傷害。"
},
damage: "80+",
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card