1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

56 lines
1003 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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