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

44
data-asia/S/S10b/050.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "快龍VSTAR"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 280,
types: ["Dragon"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "終極衝擊"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。"
},
damage: 250,
cost: ["Water", "Lightning", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]龍之星星"
},
effect: {
'zh-tw': "查看自己的牌庫上方12張卡從其中選擇任意數量的【水】或者【雷】能量卡以任意方式附於自己的寶可夢身上。將剩餘卡放回牌庫並重洗。[對戰中己方只可使用1次【VSTAR】力量。]"
},
cost: ["Colorless"]
}],
retreat: 2,
regulationMark: "F"
}
export default card