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:
49
data-asia/S/S11/057.ts
Normal file
49
data-asia/S/S11/057.ts
Normal 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
|
Reference in New Issue
Block a user