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

49
data-asia/S/S11/057.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "化石翼龍VSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 260,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "放逐奇襲"
},
effect: {
'zh-tw': "將自己的牌庫上方3張卡放置於放逐區。"
},
damage: 240,
cost: ["Fighting", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]古時星星"
},
effect: {
'zh-tw': "這隻寶可夢離場前擁有「對手的場上的『寶可夢【V】』『化石翼龍【VSTAR】』 除外)的特性全部消除。」效果的特性。[對戰中己方只可使用1次【VSTAR】力量。]"
},
cost: ["Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card