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

56
data-asia/S/S12/123.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
ja: "ルギアVSTAR"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 280,
types: ["Colorless"],
stage: "VMAX",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ストームダイブ"
},
damage: 220,
effect: {
ja: "のぞむなら、場に出ているスタジアムをトラッシュする。"
}
}, {
name: {
ja: "特性"
}
}, {
name: {
ja: "アッセンブルスター"
},
effect: {
ja: "自分の番に使える。自分のトラッシュからポケモン「ルールを持つポケモン」をのぞくを2枚まで選び、ベンチに出す。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 2
}
export default card