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

56
data-asia/S/S12a/260.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
ja: "オリジンディアルガVSTAR"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 280,
types: ["Metal"],
stage: "VMAX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "メタルブラスト"
},
damage: "40",
effect: {
ja: "このポケモンについているエネルギーの数×40ダメージ追加。"
}
}, {
cost: ["Metal", "Metal", "Metal", "Metal", "Colorless"],
name: {
ja: "スタークロノス"
},
damage: 220,
effect: {
ja: "この番が終わったら、もう1回自分の番を始める。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "30"
}],
retreat: 3
}
export default card