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/S10D/049.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "起源帝牙盧卡VSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 280,
types: ["Metal"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "金屬爆破"
},
effect: {
'zh-tw': "增加這隻寶可夢身上附加的【鋼】能量的數量×40點傷害。"
},
damage: "40+",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]星星柯羅諾斯"
},
effect: {
'zh-tw': "這個回合結束後再開始1次自己的回合。[對戰中己方只可使用1次【VSTAR】力量。]"
},
damage: 220,
cost: ["Metal", "Metal", "Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "F"
}
export default card