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

55 lines
983 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ライチュウ"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
dexId: [26],
hp: 140,
types: ["Lightning"],
description: {
ja: "尻尾が アースの 役目をはたして 電気を 地面に 逃がすので 自分自身は しびれたりしない。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "エレキチャージ"
},
effect: {
ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "10まんボルト"
},
damage: 200,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card