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

44
data-asia/S/S12a/261.ts Normal file
View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S12a"
const card: Card = {
set: Set,
name: {
ja: "ギラティナVSTAR"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 280,
types: ["Dragon"],
stage: "VMAX",
attacks: [{
cost: ["Grass", "Psychic", "Colorless"],
name: {
ja: "ロストインパクト"
},
damage: 280,
effect: {
ja: "自分の場のポケモンについているエネルギーを2個選び、ロストゾーンに置く。"
}
}, {
cost: ["Grass", "Psychic"],
name: {
ja: "スターレクイエム"
},
effect: {
ja: "このワザは、自分のロストゾーンにカードが10枚以上あるときにしか使えない。相手のバトルポケモンをきぜつさせる。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
retreat: 2
}
export default card