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

50 lines
920 B
TypeScript
Raw Permalink 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 "../S9"
const card: Card = {
set: Set,
name: {
ja: "ライチュウV"
},
illustrator: "MUGENUP",
category: "Pokemon",
hp: 200,
types: ["Lightning"],
stage: "Basic",
suffix: "V",
attacks: [{
cost: ["Lightning"],
name: {
ja: "ファストチャージ"
},
effect: {
ja: "このワザは、先攻プレイヤーの最初の番でも使える。自分の山札からエネルギーを1枚選び、このポケモンにつける。そして山札を切る。"
}
}, {
cost: ["Lightning", "Lightning"],
name: {
ja: "ダイナミックスパーク"
},
damage: "60×",
effect: {
ja: "自分の場のポケモンについているエネルギーを好きなだけトラッシュし、その枚数×60ダメージ。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card